From 67418f55098750fe196d9d465de671d2e1f659c1 Mon Sep 17 00:00:00 2001 From: John Kleint Date: Sun, 12 Oct 2014 15:24:39 -0400 Subject: [PATCH] Guide: remove promise of a counter in the guessing game. Issue #17964. --- src/doc/guide.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 4e9966cb3db2a..9f7e51155c6fb 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