summaryrefslogtreecommitdiff
path: root/src/Game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Game.cpp')
-rw-r--r--src/Game.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Game.cpp b/src/Game.cpp
index 7f925fa..1ed4b50 100644
--- a/src/Game.cpp
+++ b/src/Game.cpp
@@ -80,7 +80,7 @@ int Game::editDiff(){
std::cin >> mines;
if (mines > 8 || mines > (boardWidth * boardHeight)) {
- std::cout << "There can't be more than " << mines << "mines." << std::endl;
+ std::cout << "There can't be more than " << mines << " mines." << std::endl;
return 1;
}
@@ -128,4 +128,4 @@ void Game::displayBoard() {
}
putchar('\n');
}
-} \ No newline at end of file
+}