Fix wording in Guessing Game

This commit is contained in:
Ori Avtalion 2015-12-01 10:59:31 +02:00
parent c212c0e1d1
commit 4a35a732b7

View File

@ -521,11 +521,11 @@ Please input your guess.
You guessed: 5
```
Great! Next up: lets compare our guess to the secret guess.
Great! Next up: comparing our guess to the secret number.
# Comparing guesses
Now that weve got user input, lets compare our guess to the random guess.
Now that weve got user input, lets compare our guess to the secret number.
Heres our next step, though it doesnt quite compile yet:
```rust,ignore