Merge pull request #86 from IanWitham/patch-6

Grammar fix
This commit is contained in:
Ilya Kantor 2017-07-10 00:02:15 +03:00 committed by GitHub
commit 9e65a037f4

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