From 92d02d9c22e337f9ce159aa8f2c6786d8c38045a Mon Sep 17 00:00:00 2001 From: Vikas Date: Wed, 14 Jun 2017 23:54:05 -0500 Subject: [PATCH] Fix minor typo in While-For chapter if should have been it! --- 1-js/02-first-steps/12-while-for/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/12-while-for/article.md b/1-js/02-first-steps/12-while-for/article.md index 41ae8c08..ad326e77 100644 --- a/1-js/02-first-steps/12-while-for/article.md +++ b/1-js/02-first-steps/12-while-for/article.md @@ -235,7 +235,7 @@ The combination: "infinite loop + `break` as needed" is great for situations whe ## Continue to the next iteration [#continue] -The `continue` directive is a "lighter version" of `break`. It doesn't stop the whole loop. Instead if stops the current iteration and forces the loop to start a new one (if the condition allows). +The `continue` directive is a "lighter version" of `break`. It doesn't stop the whole loop. Instead it stops the current iteration and forces the loop to start a new one (if the condition allows). We can use it if we're done on the current iteration and would like to move on to the next.