From f28a33359bc56928a89483fbcf3d4f3707e3ebe8 Mon Sep 17 00:00:00 2001 From: Florian Hahn Date: Fri, 13 Feb 2015 10:24:05 +0100 Subject: [PATCH] Make if after colon lowercase --- src/doc/trpl/more-strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/more-strings.md b/src/doc/trpl/more-strings.md index 986ad23c665..b2763843508 100644 --- a/src/doc/trpl/more-strings.md +++ b/src/doc/trpl/more-strings.md @@ -91,7 +91,7 @@ and only moving to this: fn foo(s: String) { ``` -If you have good reason. It's not polite to hold on to ownership you don't +if you have good reason. It's not polite to hold on to ownership you don't need, and it can make your lifetimes more complex. ## Generic functions