Skip to content

Commit e5d8d90

Browse files
committed
Merge pull request GitbookIO#35 from hasselg/for_loop_example
Improved exercise instructions.
2 parents 376e537 + 94a382c commit e5d8d90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

loops/for.md

Lines changed: 1 addition & 1 deletion
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 (0, 1, 2, ...) from 0 to 99.
24+
Using a for-loop, create a variable named `message` that equals the concatenation of integers (0, 1, 2, ...) from 0 to 99.
2525

2626
```js
2727
var message = "";

0 commit comments

Comments
 (0)