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