about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEduard-Mihai Burtescu <edy.burt@gmail.com>2016-03-19 12:30:00 +0200
committerEduard-Mihai Burtescu <edy.burt@gmail.com>2016-03-19 12:30:00 +0200
commit33c28b45c8bf22ce3ee4fac0446bfd86fbf4f0ef (patch)
treedca4261539bb3e42ea8ad3204e241352933680d0 /src
parente28a1b6cf56d6546d856a332c86c3b7aa75de366 (diff)
parent01d76099f261abe50342d9261fad618c5323274b (diff)
downloadrust-33c28b45c8bf22ce3ee4fac0446bfd86fbf4f0ef.tar.gz
rust-33c28b45c8bf22ce3ee4fac0446bfd86fbf4f0ef.zip
Rollup merge of #32288 - tclfs:patch-2, r=apasel422
docs: One typo

I think it's a mistake of spelling.
Diffstat (limited to 'src')
-rw-r--r--src/doc/book/guessing-game.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/guessing-game.md b/src/doc/book/guessing-game.md
index e071bfdf8bc..590c7e84819 100644
--- a/src/doc/book/guessing-game.md
+++ b/src/doc/book/guessing-game.md
@@ -912,7 +912,7 @@ returned by `parse()`, this is an `enum`  like `Ordering`, but in this case,
 each variant has some data associated with it: `Ok` is a success, and `Err` is a
 failure. Each contains more information: the successfully parsed integer, or an
 error type. In this case, we `match` on `Ok(num)`, which sets the name `num` to
-the unwrapped `Ok` value (ythe integer), and then we  return it on the
+the unwrapped `Ok` value (the integer), and then we  return it on the
 right-hand side. In the `Err` case, we don’t care what kind of error it is, so
 we just use the catch all `_` instead of a name. This catches everything that
 isn't `Ok`, and `continue` lets us move to the next iteration of the loop; in