We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7ce7b6 commit b3ebe94Copy full SHA for b3ebe94
src/doc/book/loops.md
@@ -195,7 +195,7 @@ for x in 0..10 {
195
You may also encounter situations where you have nested loops and need to
196
specify which one your `break` or `continue` statement is for. Like most
197
other languages, by default a `break` or `continue` will apply to innermost
198
-loop. In a situation where you would like to a `break` or `continue` for one
+loop. In a situation where you would like to `break` or `continue` for one
199
of the outer loops, you can use labels to specify which loop the `break` or
200
`continue` statement applies to. This will only print when both `x` and `y` are
201
odd:
0 commit comments