Fixed typo

This commit is contained in:
Lee Aronson 2015-04-23 16:50:05 -07:00
parent da5f80cc6d
commit 3ae6a5e48d

View File

@ -3183,7 +3183,7 @@ for i in 0..256 {
}
```
Like `loop` expressions, `while` loops can be controlled with `break` or
Like `loop` expressions, `for` loops can be controlled with `break` or
`continue`, and may optionally have a _label_. See [infinite
loops](#infinite-loops), [break expressions](#break-expressions), and
[continue expressions](#continue-expressions) for more information.