Fixed a mispell

This commit is contained in:
Teascade 2017-08-26 00:34:32 +00:00
parent cab12e3833
commit 6b76cd07e8
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ while (true == false) {
Defines a loop very similar to while, but which parameters inside the parenthesis consists of three parts separated by semicolons`;`.
```
for (let i = 0; i < 10; i++) {
// Loop through 0 to 10
// Loop through 0 to 9
}
```