Rollup merge of #30134 - salty-horse:patch-1, r=steveklabnik

random/secret guess -> secret number.
This commit is contained in:
Steve Klabnik 2015-12-01 19:01:41 -05:00
commit 5e4adf96cf

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