From 07616285d4fca16a87f05889e4d3629645fe716a Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Thu, 18 Jan 2018 17:15:41 +0100 Subject: [PATCH] Typo --- 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 e8bd3e5b..70630459 100644 --- a/1-js/02-first-steps/12-while-for/article.md +++ b/1-js/02-first-steps/12-while-for/article.md @@ -387,4 +387,4 @@ To make an "infinite" loop, usually the `while(true)` construct is used. Such a If we don't want to do anything on the current iteration and would like to forward to the next one, the `continue` directive does it. -`Break/continue` support labels before the loop. A label is the only way for `break/continue` to escape the nesting and go to the outer loop. +`break/continue` support labels before the loop. A label is the only way for `break/continue` to escape the nesting and go to the outer loop.