From 48f9e670d133e46342612b51d26c0eb935295b63 Mon Sep 17 00:00:00 2001 From: Bulat Musin Date: Tue, 16 Jan 2018 08:23:04 +0300 Subject: [PATCH] fix formatting, make line 80chars-width --- second-edition/src/ch02-00-guessing-game-tutorial.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/second-edition/src/ch02-00-guessing-game-tutorial.md b/second-edition/src/ch02-00-guessing-game-tutorial.md index 3753f9aa1..a113063eb 100644 --- a/second-edition/src/ch02-00-guessing-game-tutorial.md +++ b/second-edition/src/ch02-00-guessing-game-tutorial.md @@ -770,8 +770,9 @@ user must press the enter key to satisfy `read_line`. When the user presses enter, a newline character is added to the string. For example, if the user types 5 and presses enter, -`guess` looks like this: `5\n`. The `\n` represents “newline,” the enter key. -The `trim` method eliminates `\n`, resulting in just `5`. +`guess` looks like this: `5\n`. The `\n` represents “newline,” the +enterkey. The `trim` method eliminates `\n`, +resulting in just `5`. The [`parse` method on strings][parse] parses a string into some kind of number. Because this method can parse a variety of number types, we