Auto merge of #25669 - GuillaumeGomez:typo-fix, r=Manishearth

r? @steveklabnik
This commit is contained in:
bors 2015-05-21 19:41:18 +00:00
commit c3d60aba6c

View File

@ -148,7 +148,7 @@ a few tricks up their sleeves.
For example, theyre [immutable][immutable] by default. Thats why our example
uses `mut`: it makes a binding mutable, rather than immutable. `let` doesnt
take a name on the left hand side, it actually accepts a
[pattern][patterns]. Well use patterns more later. Its easy enough
[pattern][patterns]. Well use patterns later. Its easy enough
to use for now:
```rust