rollup merge of #19458: MatejLach/guess_style_fix_guide

I think that this wording makes it more clear as to what we're doing here.
Opinions @steveklabnik ?
This commit is contained in:
Corey Richardson 2014-12-05 10:07:03 -08:00
commit f2b81888c1

View File

@ -2064,8 +2064,8 @@ Great! Next up: let's compare our guess to the secret guess.
## Comparing guesses
If you remember, earlier in the guide, we made a `cmp` function that compared
two numbers. Let's add that in, along with a `match` statement to compare the
guess to the secret guess:
two numbers. Let's add that in, along with a `match` statement to compare our
guess to the secret number:
```{rust,ignore}
use std::io;