We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 223d6a1 commit 0890090Copy full SHA for 0890090
src/ch03-05-control-flow.md
@@ -232,8 +232,8 @@ next iteration.
232
If you have loops within loops, `break` and `continue` apply to the innermost
233
loop at that point. You can optionally specify a *loop label* on a loop that we
234
can then use with `break` or `continue` to specify that those keywords apply to
235
-the labeled loop instead of the innermost loop. Here’s an example with two
236
-nested loops:
+the labeled loop instead of the innermost loop. Loop labels must begin with a
+single quote. Here’s an example with two nested loops:
237
238
```rust
239
{{#rustdoc_include ../listings/ch03-common-programming-concepts/no-listing-32-5-loop-labels/src/main.rs}}
0 commit comments