tutorial: Formatting fix

This commit is contained in:
Benjamin Herr 2012-07-06 23:55:25 +02:00
parent 702f0cd734
commit 177853c551

View File

@ -1187,7 +1187,7 @@ Empty argument lists can be omitted from `do` expressions.
Most iteration in Rust is done with `for` loops. Like `do`,
`for` is a nice syntax for doing control flow with closures.
Additionally, within a `for` loop, `break, `cont`, and `ret`
Additionally, within a `for` loop, `break`, `cont`, and `ret`
work just as they do with `while` and `loop`.
Consider again our `each` function, this time improved to