From 16de27d11641841bb9df21dfdc47b77d888b3ca8 Mon Sep 17 00:00:00 2001 From: Yuri Lee <78947401+riri-yu@users.noreply.github.com> Date: Sun, 4 Jul 2021 19:07:41 +0900 Subject: [PATCH] Fix a small grammar mistake There was a tiny grammar mistake that I fixed by switched the words around. --- 1-js/02-first-steps/13-while-for/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/13-while-for/article.md b/1-js/02-first-steps/13-while-for/article.md index 2579b647..3045477d 100644 --- a/1-js/02-first-steps/13-while-for/article.md +++ b/1-js/02-first-steps/13-while-for/article.md @@ -377,7 +377,7 @@ label: { } ``` -...Although, 99.9% of the time `break` used is inside loops, as we've seen in the examples above. +...Although, 99.9% of the time `break` is used inside loops, as we've seen in the examples above. A `continue` is only possible from inside a loop. ````