diff options
| author | Bert Apperlo <91734527+b-apperlo@users.noreply.github.com> | 2023-06-08 16:46:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-08 16:46:45 +0200 |
| commit | a4fe3602b238f38e9fd245874c863852791129fb (patch) | |
| tree | 082caafb769c7be32996b54bc2d814707952926a | |
| parent | 8974e33f697abf55d322b7de051e8b41c219523d (diff) | |
fix: updated comment for struct
| -rw-r--r-- | exercises/hashmaps/hashmaps3.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/hashmaps/hashmaps3.rs b/exercises/hashmaps/hashmaps3.rs index 982976c..0d0a43a 100644 --- a/exercises/hashmaps/hashmaps3.rs +++ b/exercises/hashmaps/hashmaps3.rs @@ -18,7 +18,7 @@ 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 { goals_scored: u8, goals_conceded: u8, |
