Skip to content

Commit 81fa7db

Browse files
committed
Merge pull request GitbookIO#7 from mcdonamp/patch-1
Fix GitbookIO#6: Update for.md
2 parents cce8733 + 06f04cf commit 81fa7db

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)