about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/book/loops.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/loops.md b/src/doc/book/loops.md
index 97ca2e3e702..e23e6f3a786 100644
--- a/src/doc/book/loops.md
+++ b/src/doc/book/loops.md
@@ -178,7 +178,7 @@ loop {
 
 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.
 
-`continue` is similar, but instead of ending the loop, goes to the next
+`continue` is similar, but instead of ending the loop, it goes to the next
 iteration. This will only print the odd numbers:
 
 ```rust