diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-07-29 10:30:36 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-07-29 10:30:36 -0400 |
| commit | 5aa76509da4b45248ef1a1dcb74939de9bb08c1a (patch) | |
| tree | 385808a66ef5ab3113d5d0a9e4d5cd7070233075 | |
| parent | d3dc1e56f12001fe20f687af8b8e348519cfadaa (diff) | |
| parent | 9699119c5795f4f9aa27bc3eb8f2307c72163236 (diff) | |
| download | rust-5aa76509da4b45248ef1a1dcb74939de9bb08c1a.tar.gz rust-5aa76509da4b45248ef1a1dcb74939de9bb08c1a.zip | |
Rollup merge of #27355 - krumelmonster:patch-1, r=alexcrichton
Minor change in the book
| -rw-r--r-- | src/doc/trpl/guessing-game.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/guessing-game.md b/src/doc/trpl/guessing-game.md index 1784c253f7f..0cd4c60932a 100644 --- a/src/doc/trpl/guessing-game.md +++ b/src/doc/trpl/guessing-game.md @@ -499,7 +499,7 @@ generator, which is local to the particular [thread][concurrency] of execution we’re in. Because we `use rand::Rng`’d above, it has a `gen_range()` method available. This method takes two arguments, and generates a number between them. It’s inclusive on the lower bound, but exclusive on the upper bound, -so we need `1` and `101` to get a number between one and a hundred. +so we need `1` and `101` to get a number ranging from one to a hundred. [concurrency]: concurrency.html |
