Skip to content

Commit

Permalink
Fixed a plural issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kelley committed May 29, 2022
1 parent ee6a21c commit 36a48c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WordleArchive/WordleArchive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ class WordlePlayer {
}
cout << header;
if (guesses_remaining == 1) {
cout << " " << Color::error << guesses_remaining << " tries left\n\n";
cout << " " << Color::error << guesses_remaining << " try left\n\n";
}
else {
cout << " " << guesses_remaining << " tries left\n\n";
Expand Down

0 comments on commit 36a48c0

Please sign in to comment.