diff options
| author | Don Petersen <don@donpetersen.net> | 2015-05-09 22:10:34 -0700 |
|---|---|---|
| committer | Don Petersen <don@donpetersen.net> | 2015-05-09 22:10:34 -0700 |
| commit | ae1b64ff7376859b3582441cd41218b5445da148 (patch) | |
| tree | 1cb236526f870396732d26758f076fbf3f150a9d | |
| parent | f8888af412b517c55deed84f851b3dc3c93d81d0 (diff) | |
| download | rust-ae1b64ff7376859b3582441cd41218b5445da148.tar.gz rust-ae1b64ff7376859b3582441cd41218b5445da148.zip | |
Fix typo in Match document.
| -rw-r--r-- | src/doc/trpl/match.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/match.md b/src/doc/trpl/match.md index 2c0c8ea73c0..86b94453389 100644 --- a/src/doc/trpl/match.md +++ b/src/doc/trpl/match.md @@ -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", |
