Merge remote-tracking branch 'ben0x539/incoming'

Conflicts:
	doc/tutorial.md
This commit is contained in:
Brian Anderson 2012-07-07 18:30:54 -07:00
commit f3669dfc5d

View File

@ -1729,7 +1729,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, `again`, and `ret`
Additionally, within a `for` loop, `break`, `again`, and `ret`
work just as they do with `while` and `loop`.
Consider again our `each` function, this time improved to