Skip to content

Commit

Permalink
Removed unnecessary mutability
Browse files Browse the repository at this point in the history
  • Loading branch information
MrPancakes39 committed Sep 3, 2022
1 parent 8863936 commit f6124cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ fn screen_play() {
println!("+---------------------------------------+");
}
// print all tries
for tword in &mut tried_words {
for tword in &tried_words {
tword.padding_print(10);
}
// print the keyboard
Expand Down

0 comments on commit f6124cc

Please sign in to comment.