From 1fa2ff04588b0f52b069b09ce84afdfa5b556416 Mon Sep 17 00:00:00 2001 From: Arnold Dumas Date: Sun, 3 Aug 2014 20:44:38 +0200 Subject: [PATCH] No space before exclamation mark. --- examples/pong/Pong.cpp | 4 ++-- examples/sound_capture/SoundCapture.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/pong/Pong.cpp b/examples/pong/Pong.cpp index 1b9a74fcc..2b6ec1f19 100644 --- a/examples/pong/Pong.cpp +++ b/examples/pong/Pong.cpp @@ -165,12 +165,12 @@ int main() if (ball.getPosition().x - ballRadius < 0.f) { isPlaying = false; - pauseMessage.setString("You lost !\nPress space to restart or\nescape to exit"); + pauseMessage.setString("You lost!\nPress space to restart or\nescape to exit"); } if (ball.getPosition().x + ballRadius > gameWidth) { isPlaying = false; - pauseMessage.setString("You won !\nPress space to restart or\nescape to exit"); + pauseMessage.setString("You won!\nPress space to restart or\nescape to exit"); } if (ball.getPosition().y - ballRadius < 0.f) { diff --git a/examples/sound_capture/SoundCapture.cpp b/examples/sound_capture/SoundCapture.cpp index a6946ac06..21f59175f 100644 --- a/examples/sound_capture/SoundCapture.cpp +++ b/examples/sound_capture/SoundCapture.cpp @@ -85,7 +85,7 @@ int main() } // Finished ! - std::cout << std::endl << "Done !" << std::endl; + std::cout << std::endl << "Done!" << std::endl; // Wait until the user presses 'enter' key std::cout << "Press enter to exit..." << std::endl;