Skip to content

Commit c0c43b1

Browse files
authored
typo fix in loops.md
1 parent 77aeb7b commit c0c43b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/loops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ loop {
178178

179179
We now loop forever with `loop` and use `break` to break out early. Issuing an explicit `return` statement will also serve to terminate the loop early.
180180

181-
`continue` is similar, but instead of ending the loop, goes to the next
181+
`continue` is similar, but instead of ending the loop, it goes to the next
182182
iteration. This will only print the odd numbers:
183183

184184
```rust

0 commit comments

Comments
 (0)