Grammar fix

Should be "its", not "it's" (which means "it is")
This commit is contained in:
Ian Witham 2017-07-09 15:29:28 +12:00 committed by GitHub
parent 33c7a30b10
commit 215233b12f

View file

@ -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++) {