summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorEvan Miller <evanmiller2112@gmail.com>2024-03-04 10:39:01 -0500
committerGitHub <noreply@github.com>2024-03-04 10:39:01 -0500
commit9bda8598e166081dacdbcd2890381a062432f43c (patch)
tree2f8f70e99aaacd40e724e5b97509b272d20a4111 /exercises
parent8d0aa11a35f822d044e6be89dc42840e0aea8858 (diff)
parent19b5e24d5caf551aef5fd749ed7437d3044bf6ce (diff)
Merge pull request #1 from evanmiller2112/evanmiller2112-hashmap3-description
Update hashmaps3.rs description for clarity
Diffstat (limited to 'exercises')
-rw-r--r--exercises/11_hashmaps/hashmaps3.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/exercises/11_hashmaps/hashmaps3.rs b/exercises/11_hashmaps/hashmaps3.rs
index 36544ee..8d9236d 100644
--- a/exercises/11_hashmaps/hashmaps3.rs
+++ b/exercises/11_hashmaps/hashmaps3.rs
@@ -4,10 +4,11 @@
// the form : "<team_1_name>,<team_2_name>,<team_1_goals>,<team_2_goals>"
// Example: England,France,4,2 (England scored 4 goals, France 2).
//
-// You have to build a scores table containing the name of the team, goals the
-// team scored, and goals the team conceded. One approach to build the scores
-// table is to use a Hashmap. The solution is partially written to use a
-// Hashmap, complete it to pass the test.
+// You have to build a scores table containing the name of the team, the total
+// number of goals the team scored, and the total number of goals the team
+// conceded. One approach to build the scores table is to use a Hashmap.
+// The solution is partially written to use a Hashmap,
+// complete it to pass the test.
//
// Make me pass the tests!
//