about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-01-07 15:35:26 +0000
committerbors <bors@rust-lang.org>2015-01-07 15:35:26 +0000
commit2e2a2cdb59146ac97f0413d7ac4bb521b14d6ad9 (patch)
tree03adca2d57de254737401ef8a0a1288d42e2eeac
parentdfd557bd73a27966b242635b04f2a9fca6eadce8 (diff)
parent7846eb6aaae9094694e4aa3effec214ad3cd601b (diff)
downloadrust-2e2a2cdb59146ac97f0413d7ac4bb521b14d6ad9.tar.gz
rust-2e2a2cdb59146ac97f0413d7ac4bb521b14d6ad9.zip
Merge pull request #20669 from vrana/patch-1
Use a better word in the guide

Reviewed-by: steveklabnik
-rw-r--r--src/doc/guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide.md b/src/doc/guide.md
index fce0e6ed578..764e6edfe07 100644
--- a/src/doc/guide.md
+++ b/src/doc/guide.md
@@ -1377,7 +1377,7 @@ As you can see, `enum` and `match` used together are quite useful!
 
 `match` is also an expression, which means we can use it on the right-hand
 side of a `let` binding or directly where an expression is used. We could
-also implement the previous line like this:
+also implement the previous example like this:
 
 ```{rust}
 use std::cmp::Ordering;