about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/guide.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index 4e9966cb3db..9f7e51155c6 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -1746,8 +1746,7 @@ For our first project, we'll implement a classic beginner programming problem:
 the guessing game. Here's how it works: Our program will generate a random
 integer between one and a hundred. It will then prompt us to enter a guess.
 Upon entering our guess, it will tell us if we're too low or too high. Once we
-guess correctly, it will congratulate us, and print the number of guesses we've
-taken to the screen. Sound good?
+guess correctly, it will congratulate us. Sound good?
 
 ## Set up