mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-02-04 11:07:59 -08:00
rust: fix error msg
This commit is contained in:
@@ -58,7 +58,7 @@ impl Game {
|
||||
is_y = true;
|
||||
}
|
||||
}
|
||||
Err(e) => println!("INVALID GUESS - TRY AGAIN! Error: {e}"),
|
||||
Err(e) => println!("{} - TRY AGAIN!", e.to_string().to_uppercase()),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user