Skip to content

Commit 3159e93

Browse files
authored
Typo
1 parent 6109448 commit 3159e93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/12-while-for/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ A single execution of the loop body is called *an iteration*. The loop in the ex
3535

3636
If there were no `i++` in the example above, the loop would repeat (in theory) forever. In practice, the browser provides ways to stop such loops, and for server-side JavaScript we can kill the process.
3737

38-
Any expression or a variable can be a loop condition, not just a comparison. They are evaluated and converted to boolean by `while`.
38+
Any expression or a variable can be a loop condition, not just a comparison. They are evaluated and converted to a boolean by `while`.
3939

4040
For instance, the shorter way to write `while (i != 0)` could be `while (i)`:
4141

0 commit comments

Comments
 (0)