Merge pull request #1301 from williamwebb/williamwebb-fix(hashmap3)-typo

fix(hashmaps3): fix typo in todo hint
This commit is contained in:
liv 2022-12-23 16:16:59 +01:00 committed by GitHub
commit 4c3a00b5cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.
}