Merge pull request #1547 from b-apperlo/b-apperlo-patch-2

fix: update hashmaps3.rs
This commit is contained in:
liv 2023-06-12 12:18:36 +02:00 committed by GitHub
commit 974717ca11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -18,9 +18,8 @@
use std::collections::HashMap;
// A structure to store team name and its goal details.
// A structure to store the goal details of a team.
struct Team {
name: String,
goals_scored: u8,
goals_conceded: u8,
}