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..d35434419 100644 --- a/examples/sound_capture/SoundCapture.cpp +++ b/examples/sound_capture/SoundCapture.cpp @@ -84,8 +84,8 @@ int main() } } - // Finished ! - std::cout << std::endl << "Done !" << std::endl; + // Finished! + std::cout << std::endl << "Done!" << std::endl; // Wait until the user presses 'enter' key std::cout << "Press enter to exit..." << std::endl;