about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatej Lach <matej.lach@gmail.com>2014-12-02 13:40:18 +0000
committerMatej Lach <matej.lach@gmail.com>2014-12-02 13:40:18 +0000
commit5bbe5d6d931519e424aee21664fd37d33152817e (patch)
tree847a742452eea281312ab11832c27ffa4dce602a
parent2b35e6fa0834a92e47a46eb7a8e045ba04fbbdc7 (diff)
downloadrust-5bbe5d6d931519e424aee21664fd37d33152817e.tar.gz
rust-5bbe5d6d931519e424aee21664fd37d33152817e.zip
better wording
-rw-r--r--src/doc/guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index c2d43a20ec4..ce5730ad9ce 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -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;