summaryrefslogtreecommitdiff
path: root/exercises/hashmaps/hashmaps3.rs
diff options
context:
space:
mode:
authorBert Apperlo <91734527+b-apperlo@users.noreply.github.com>2023-06-08 16:46:45 +0200
committerGitHub <noreply@github.com>2023-06-08 16:46:45 +0200
commita4fe3602b238f38e9fd245874c863852791129fb (patch)
tree082caafb769c7be32996b54bc2d814707952926a /exercises/hashmaps/hashmaps3.rs
parent8974e33f697abf55d322b7de051e8b41c219523d (diff)
fix: updated comment for struct
Diffstat (limited to 'exercises/hashmaps/hashmaps3.rs')
-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 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,