]> git.lizzy.rs Git - rust.git/commitdiff
typo fix in loops.md
authorJames Alan Preiss <donjeezy@gmail.com>
Sun, 12 Jun 2016 03:46:23 +0000 (20:46 -0700)
committerGitHub <noreply@github.com>
Sun, 12 Jun 2016 03:46:23 +0000 (20:46 -0700)
src/doc/book/loops.md

index 97ca2e3e702f6cf926e54e88679beb1eff7dfe1a..e23e6f3a786a5c0e816edb6f27370f3aaf20caf7 100644 (file)
@@ -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