From 7846eb6aaae9094694e4aa3effec214ad3cd601b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Vr=C3=A1na?= Date: Tue, 6 Jan 2015 15:13:47 -0800 Subject: [PATCH] Use a better word in the guide --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;