1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-07-05 00:48:47 +02:00

fix: update hashmaps3.rs

This commit is contained in:
Bert Apperlo
2023-06-08 16:44:39 +02:00
committed by GitHub
parent 30291a3c25
commit 8974e33f69

View File

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