diff options
| author | Jakub Vrána <jakub@vrana.cz> | 2015-01-06 15:13:47 -0800 |
|---|---|---|
| committer | Jakub Vrána <jakub@vrana.cz> | 2015-01-06 15:13:47 -0800 |
| commit | 7846eb6aaae9094694e4aa3effec214ad3cd601b (patch) | |
| tree | 060a8316f8e89a8d73e140911a4a59bf120c73f4 | |
| parent | 6539cb417f4a7c2d9d1afce44c196578d2b67f38 (diff) | |
| download | rust-7846eb6aaae9094694e4aa3effec214ad3cd601b.tar.gz rust-7846eb6aaae9094694e4aa3effec214ad3cd601b.zip | |
Use a better word in the guide
| -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 66551ec499a..38fedaf5326 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; |
