summaryrefslogtreecommitdiff
path: root/exercises/11_hashmaps
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2024-01-15 14:51:31 +0000
committerGitHub <noreply@github.com>2024-01-15 14:51:31 +0000
commit6afc4840b42e34b3dcf653f3facb72ea2c8d5351 (patch)
tree84bd58bf0353237dc0aaa86b43a00b49f71977c9 /exercises/11_hashmaps
parent88b583f2bbf4d7a668db6d83964af5470c93e516 (diff)
parent93aef73eb54759ad7491306e69946de1975012bd (diff)
Merge pull request #1819 from gerases/grammar-fix
Correct for more standard English
Diffstat (limited to 'exercises/11_hashmaps')
-rw-r--r--exercises/11_hashmaps/hashmaps3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/11_hashmaps/hashmaps3.rs b/exercises/11_hashmaps/hashmaps3.rs
index 08e977c..36544ee 100644
--- a/exercises/11_hashmaps/hashmaps3.rs
+++ b/exercises/11_hashmaps/hashmaps3.rs
@@ -36,7 +36,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 the number of goals conceded from team_2, and similarly
+ // will be the number of goals conceded by team_2, and similarly
// goals scored by team_2 will be the number of goals conceded by
// team_1.
}