Fix "the the" typo and split a run-on sentence

This commit is contained in:
Colin Wallace 2015-09-19 19:50:42 -07:00
parent b2cc47ff94
commit 4119fc2749
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ match x {
```
This prints `no`, because the `if` applies to the whole of `4 | 5`, and not to
just the `5`, In other words, the the precedence of `if` behaves like this:
just the `5`. In other words, the precedence of `if` behaves like this:
```text
(4 | 5) if y => ...