From 7031318d01a01d16a77af07f94376a5833a27577 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Fri, 14 Oct 2016 22:54:19 -0400 Subject: [PATCH] Fix some headings that were too far in --- nostarch/chapter02.md | 4 ++-- src/ch02-00-guessing-game-tutorial.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nostarch/chapter02.md b/nostarch/chapter02.md index 3df1e28..fb500b2 100644 --- a/nostarch/chapter02.md +++ b/nostarch/chapter02.md @@ -874,7 +874,7 @@ Typing `quit` actually quits the game, but so will any other non-number input. However, this is suboptimal to say the least. We want the game to automatically stop when the correct number is guessed. -#### Quitting After a Correct Guess +### Quitting After a Correct Guess Let’s program the game to quit when the user wins by adding a `break`: @@ -923,7 +923,7 @@ By adding the `break` line after `You win!`, the program will exit the loop when the user guesses the secret number correctly. Exiting the loop also means exiting the program, because the loop is the last part of `main`. -#### Handling Invalid Input +### Handling Invalid Input To further refine the game’s behavior, rather than crashing the program when the user inputs a non-number, let’s make the game ignore a non-number so the diff --git a/src/ch02-00-guessing-game-tutorial.md b/src/ch02-00-guessing-game-tutorial.md index 98ceaf3..b002b29 100644 --- a/src/ch02-00-guessing-game-tutorial.md +++ b/src/ch02-00-guessing-game-tutorial.md @@ -897,7 +897,7 @@ Typing `quit` actually quits the game, but so will any other non-number input. However, this is suboptimal to say the least. We want the game to automatically stop when the correct number is guessed. -#### Quitting After a Correct Guess +### Quitting After a Correct Guess Let’s program the game to quit when the user wins by adding a `break`: @@ -946,7 +946,7 @@ By adding the `break` line after `You win!`, the program will exit the loop when the user guesses the secret number correctly. Exiting the loop also means exiting the program, because the loop is the last part of `main`. -#### Handling Invalid Input +### Handling Invalid Input To further refine the game’s behavior, rather than crashing the program when the user inputs a non-number, let’s make the game ignore a non-number so the