summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorMo <76752051+mo8it@users.noreply.github.com>2024-07-05 15:52:20 +0200
committerGitHub <noreply@github.com>2024-07-05 15:52:20 +0200
commit9e2ff7d037a3c72ccedb7818350e98baca445506 (patch)
tree8ee482b0960b8fe8462eb0c01bbc598ba46a5b91 /exercises
parent65834fc42012cb6c0412757b830294e9af26549f (diff)
parent2f4e63b443709deb70892b45418d7c85ce714d61 (diff)
Merge pull request #2021 from matthewjnield/main
fix: Add clarification to instructions for hashmaps2.rs
Diffstat (limited to 'exercises')
-rw-r--r--exercises/11_hashmaps/hashmaps2.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/exercises/11_hashmaps/hashmaps2.rs b/exercises/11_hashmaps/hashmaps2.rs
index b3691b6..376970d 100644
--- a/exercises/11_hashmaps/hashmaps2.rs
+++ b/exercises/11_hashmaps/hashmaps2.rs
@@ -5,7 +5,8 @@
// Apple (4), Mango (2) and Lychee (5) are already in the basket hash map. You
// must add fruit to the basket so that there is at least one of each kind and
// more than 11 in total - we have a lot of mouths to feed. You are not allowed
-// to insert any more of these fruits!
+// to insert any more of the fruits that are already in the basket (Apple,
+// Mango, and Lyche).
use std::collections::HashMap;