loop -> continue

This commit is contained in:
Corey Richardson 2013-12-06 12:11:11 -05:00
parent f006a10b1e
commit 381c08bf69

View file

@ -546,7 +546,7 @@ literals and most `enum` variants.
`while` denotes a loop that iterates as long as its given condition
(which must have type `bool`) evaluates to `true`. Inside a loop, the
keyword `break` aborts the loop, and `loop` aborts the current
keyword `break` aborts the loop, and `continue` aborts the current
iteration and continues with the next.
~~~~