Skip to content

Commit 06f04cf

Browse files
author
mcdonamp
committed
Update for.md
Changes consistent with issue GitbookIO#6.
1 parent cce8733 commit 06f04cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

loops/for.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ for(var i = 0; i < 10; i = i + 1){
2121

2222
---
2323

24-
Create using a for-loop a variable named `message` which equals the concatenation of integers (1, 2, 3, ...) from 0 to 100.
24+
Create using a for-loop a variable named `message` which equals the concatenation of integers (0, 1, 2, ...) from 0 to 99.
2525

2626
```js
2727
var message = "";
@@ -44,4 +44,4 @@ for(var i = 0; i < 100; i++){
4444
assert(message == message2);
4545
```
4646

47-
---
47+
---

0 commit comments

Comments
 (0)