Skip to content

Commit

Permalink
Fix typo in Match document.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpetersen committed May 10, 2015
1 parent f8888af commit ae1b64f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/match.md
Expand Up @@ -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",
Expand Down

0 comments on commit ae1b64f

Please sign in to comment.