about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-02-15 18:26:47 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-02-15 18:26:47 +0530
commitcff0b78ce7a46daf2e6f8de16273ef2e10b6fea6 (patch)
tree1991a41d44e6071464a33b773feb97219f1a9cab /src
parentf6fa27acd6e388920b5bcaff37e6073adcdc7e4a (diff)
parentf28a33359bc56928a89483fbcf3d4f3707e3ebe8 (diff)
downloadrust-cff0b78ce7a46daf2e6f8de16273ef2e10b6fea6.tar.gz
rust-cff0b78ce7a46daf2e6f8de16273ef2e10b6fea6.zip
Rollup merge of #22264 - fhahn:tiny-doc-fix2, r=Gankro
 While having a look at the Rust book I found this tiny error. In my opinion this if should be all lowercase, because it follows a colon, but I am no native speaker, so I am probably wrong. Also it is a very tiny change, so feel free to include it in any bigger documentation patch.
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/more-strings.md2
1 files changed, 1 insertions, 1 deletions
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