summaryrefslogtreecommitdiff
path: root/exercises/11_hashmaps/hashmaps1.rs
diff options
context:
space:
mode:
authorallupeng <allupeng417@gmail.com>2024-04-29 14:18:04 +0800
committerallupeng <allupeng417@gmail.com>2024-04-29 14:18:04 +0800
commit8c3b8dcec47ae1ab08d88eaa4df522b4c30e14cc (patch)
treef0d0e39ad998e72cd4c8e191d6b1ba53262d02ae /exercises/11_hashmaps/hashmaps1.rs
parent881d3e9441507a4f615699d1cd77f4d989d20872 (diff)
doc : add a dot in hashmaps1.rs file to fill e.g.
Diffstat (limited to 'exercises/11_hashmaps/hashmaps1.rs')
-rw-r--r--exercises/11_hashmaps/hashmaps1.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/11_hashmaps/hashmaps1.rs b/exercises/11_hashmaps/hashmaps1.rs
index 80829ea..02f4725 100644
--- a/exercises/11_hashmaps/hashmaps1.rs
+++ b/exercises/11_hashmaps/hashmaps1.rs
@@ -3,7 +3,7 @@
// A basket of fruits in the form of a hash map needs to be defined. The key
// represents the name of the fruit and the value represents how many of that
// particular fruit is in the basket. You have to put at least three different
-// types of fruits (e.g apple, banana, mango) in the basket and the total count
+// types of fruits (e.g. apple, banana, mango) in the basket and the total count
// of all the fruits should be at least five.
//
// Make me compile and pass the tests!