From 0109ceaf827461d525ada1a71dcba909071d7cdc Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 16 Jan 2015 19:08:08 +0100 Subject: [PATCH] Fix typo. --- src/doc/trpl/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/functions.md b/src/doc/trpl/functions.md index eae7fc19895..d0ecb606795 100644 --- a/src/doc/trpl/functions.md +++ b/src/doc/trpl/functions.md @@ -143,7 +143,7 @@ fn foo(x: i32) -> i32 { ``` The previous definition without `return` may look a bit strange if you haven't -worked in an expression-based language before, but it becomes intutive over +worked in an expression-based language before, but it becomes intuitive over time. If this were production code, we wouldn't write it in that way anyway, we'd write this: