diff options
| author | bors <bors@rust-lang.org> | 2015-01-07 15:35:26 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-01-07 15:35:26 +0000 |
| commit | 2e2a2cdb59146ac97f0413d7ac4bb521b14d6ad9 (patch) | |
| tree | 03adca2d57de254737401ef8a0a1288d42e2eeac | |
| parent | dfd557bd73a27966b242635b04f2a9fca6eadce8 (diff) | |
| parent | 7846eb6aaae9094694e4aa3effec214ad3cd601b (diff) | |
| download | rust-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.md | 2 |
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; |
