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.
This commit is contained in:
Manish Goregaokar 2015-02-15 18:26:47 +05:30
commit cff0b78ce7

View file

@ -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