From eb40895554a032b6af4b9814cd3ee5c6d1e5d21b Mon Sep 17 00:00:00 2001 From: Yvan Sraka Date: Wed, 24 Jan 2018 10:42:21 +0100 Subject: [PATCH] Fix a weird keystroke https://doc.rust-lang.org/book/second-edition/ch02-00-guessing-game-tutorial.html#allowing-multiple-guesses-with-looping --- second-edition/src/ch02-00-guessing-game-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/second-edition/src/ch02-00-guessing-game-tutorial.md b/second-edition/src/ch02-00-guessing-game-tutorial.md index a113063ebd..e9becae732 100644 --- a/second-edition/src/ch02-00-guessing-game-tutorial.md +++ b/second-edition/src/ch02-00-guessing-game-tutorial.md @@ -871,7 +871,7 @@ exactly what we told it to do: ask for another guess forever! It doesn’t seem like the user can quit! The user could always halt the program by using the keyboard shortcut -ctrl-C. But there’s another way to escape this +ctrl-c. But there’s another way to escape this insatiable monster that we mentioned in the `parse` discussion in “Comparing the Guess to the Secret Number”: if the user enters a non-number answer, the program will crash. The user can take advantage of that in order to quit, as shown here: