From c0c43b1e27411fb6fd1df4b8fe44f153f988c8bc Mon Sep 17 00:00:00 2001 From: James Alan Preiss Date: Sat, 11 Jun 2016 20:46:23 -0700 Subject: [PATCH] typo fix in loops.md --- src/doc/book/loops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/loops.md b/src/doc/book/loops.md index 97ca2e3e702f..e23e6f3a786a 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