summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exercises/hashmaps/hashmaps3.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/exercises/hashmaps/hashmaps3.rs b/exercises/hashmaps/hashmaps3.rs
index ad3baa6..982976c 100644
--- a/exercises/hashmaps/hashmaps3.rs
+++ b/exercises/hashmaps/hashmaps3.rs
@@ -20,7 +20,6 @@ use std::collections::HashMap;
// A structure to store team name and its goal details.
struct Team {
- name: String,
goals_scored: u8,
goals_conceded: u8,
}