1
Fork 0

Rollup merge of #29059 - tshepang:typo, r=nikomatsakis

This commit is contained in:
Manish Goregaokar 2015-10-15 13:41:32 +05:30
commit bcbad7ba8c

View file

@ -41,7 +41,7 @@ If a [pattern][patterns] matches successfully, it binds any appropriate parts of
the value to the identifiers in the pattern, then evaluates the expression. If
the pattern doesnt match, nothing happens.
If youd rather to do something else when the pattern does not match, you can
If you want to do something else when the pattern does not match, you can
use `else`:
```rust