summaryrefslogtreecommitdiff
path: root/exercises/hashmaps
diff options
context:
space:
mode:
authorWilliam Webb <williamwebb@users.noreply.github.com>2022-12-20 21:17:32 -0600
committerGitHub <noreply@github.com>2022-12-20 21:17:32 -0600
commite519b5079e93f4555d712771343fa159232cbf96 (patch)
tree787204237cd38600b9079293ae7f065aca2645f0 /exercises/hashmaps
parente3af483fa68dbe2efd957327500b55acd86ef0fd (diff)
fix(hashmaps3): fix typo in todo hint
Diffstat (limited to 'exercises/hashmaps')
-rw-r--r--exercises/hashmaps/hashmaps3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/hashmaps/hashmaps3.rs b/exercises/hashmaps/hashmaps3.rs
index 18dd44c..ad3baa6 100644
--- a/exercises/hashmaps/hashmaps3.rs
+++ b/exercises/hashmaps/hashmaps3.rs
@@ -37,7 +37,7 @@ fn build_scores_table(results: String) -> HashMap<String, Team> {
let team_2_score: u8 = v[3].parse().unwrap();
// TODO: Populate the scores table with details extracted from the
// current line. Keep in mind that goals scored by team_1
- // will be number of goals conceded from team_2, and similarly
+ // will be the number of goals conceded from team_2, and similarly
// goals scored by team_2 will be the number of goals conceded by
// team_1.
}