documentation fix

`continue` expression's description mentioned `break` instead of `continue`

Signed-off-by: benaryorg <binary@benary.org>
This commit is contained in:
Katze 2016-02-26 09:45:32 +01:00 committed by benaryorg
parent 9c6a0088fb
commit 7a549598bb
No known key found for this signature in database
GPG key ID: D0073D31AB13D7F8

View file

@ -3036,7 +3036,7 @@ the case of a `while` loop, the head is the conditional expression controlling
the loop. In the case of a `for` loop, the head is the call-expression
controlling the loop. If the label is present, then `continue 'foo` returns
control to the head of the loop with label `'foo`, which need not be the
innermost label enclosing the `break` expression, but must enclose it.
innermost label enclosing the `continue` expression, but must enclose it.
A `continue` expression is only permitted in the body of a loop.