From 215233b12f891e15919de1cada6d204de3a585f3 Mon Sep 17 00:00:00 2001 From: Ian Witham Date: Sun, 9 Jul 2017 15:29:28 +1200 Subject: [PATCH] Grammar fix Should be "its", not "it's" (which means "it is") --- 1-js/02-first-steps/12-while-for/5-replace-for-while/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/12-while-for/5-replace-for-while/task.md b/1-js/02-first-steps/12-while-for/5-replace-for-while/task.md index a62c9af3..0c69d9c2 100644 --- a/1-js/02-first-steps/12-while-for/5-replace-for-while/task.md +++ b/1-js/02-first-steps/12-while-for/5-replace-for-while/task.md @@ -4,7 +4,7 @@ importance: 5 # Replace "for" with "while" -Rewrite the code changing the `for` loop to `while` without altering it's behavior (the output should stay same). +Rewrite the code changing the `for` loop to `while` without altering its behavior (the output should stay same). ```js run for (let i = 0; i < 3; i++) {