diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-12-01 19:01:41 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-12-01 19:01:41 -0500 |
| commit | 5e4adf96cf38b2d599dbb3d92d543e9be470983f (patch) | |
| tree | e1f958165176abd221fca3591c26dd878c4a755d | |
| parent | f798f2507330d42dbf790697dd858006c772c9a0 (diff) | |
| parent | 4a35a732b7ecf50f71218d89b740fc010e86f3ea (diff) | |
| download | rust-5e4adf96cf38b2d599dbb3d92d543e9be470983f.tar.gz rust-5e4adf96cf38b2d599dbb3d92d543e9be470983f.zip | |
Rollup merge of #30134 - salty-horse:patch-1, r=steveklabnik
random/secret guess -> secret number.
| -rw-r--r-- | src/doc/book/guessing-game.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/book/guessing-game.md b/src/doc/book/guessing-game.md index 6a513fb2c59..ef829c65558 100644 --- a/src/doc/book/guessing-game.md +++ b/src/doc/book/guessing-game.md @@ -521,11 +521,11 @@ Please input your guess. You guessed: 5 ``` -Great! Next up: let’s compare our guess to the secret guess. +Great! Next up: comparing our guess to the secret number. # Comparing guesses -Now that we’ve got user input, let’s compare our guess to the random guess. +Now that we’ve got user input, let’s compare our guess to the secret number. Here’s our next step, though it doesn’t quite compile yet: ```rust,ignore |
