Skip to content

Commit b5932ee

Browse files
author
mcdonamp
committed
Update while.md
Second change for issue GitbookIO#6.
1 parent cce8733 commit b5932ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

loops/while.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ do {
3232

3333
---
3434

35-
Create using a while-loop a variable named `message` which equals the concatenation of integers (1, 2, 3, ...) as long as its length (`message.length`) is inferior to 100.
35+
Create using a while-loop a variable named `message` which equals the concatenation of integers (0, 1, 2, ...) as long as its length (`message.length`) is less than 100.
3636

3737
```js
3838
var message = "";
@@ -59,4 +59,4 @@ while (message2.length < 100) {
5959
assert(message == message2);
6060
```
6161

62-
---
62+
---

0 commit comments

Comments
 (0)