Skip to content

Commit 94a382c

Browse files
committed
Improved exercise instructions.
Reordered to make it easier to read. Also changed an improperly used "which" to "that."
1 parent 5fa3d51 commit 94a382c

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)