Fix typo in Match document.

This commit is contained in:
Don Petersen 2015-05-09 22:10:34 -07:00
parent f8888af412
commit ae1b64ff73

View file

@ -50,7 +50,7 @@ side of a `let` binding or directly where an expression is used:
```rust
let x = 5;
let numer = match x {
let number = match x {
1 => "one",
2 => "two",
3 => "three",