From fc2f690fc16592abbead2360cfc0a42f5df78052 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Fri, 5 Mar 2021 14:03:22 -0500 Subject: [PATCH] Fix wrapping --- src/ch03-01-variables-and-mutability.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/ch03-01-variables-and-mutability.md b/src/ch03-01-variables-and-mutability.md index f7b3360d3..e7c15c2c3 100644 --- a/src/ch03-01-variables-and-mutability.md +++ b/src/ch03-01-variables-and-mutability.md @@ -129,11 +129,10 @@ hardcoded value needed to be updated in the future. As you saw in the guessing game tutorial in the [“Comparing the Guess to the Secret Number”][comparing-the-guess-to-the-secret-number] section in Chapter 2, you can declare a new variable with the same name as a -previous variable. -Rustaceans say that the first variable is *shadowed* by the second, which means -that the second variable’s value is what appears when the variable is used. We -can shadow a variable by using the same variable’s name and repeating the use -of the `let` keyword as follows: +previous variable. Rustaceans say that the first variable is *shadowed* by the +second, which means that the second variable’s value is what appears when the +variable is used. We can shadow a variable by using the same variable’s name +and repeating the use of the `let` keyword as follows: Filename: src/main.rs