Skip to content

Commit a301935

Browse files
authored
minor
1 parent 4d30548 commit a301935

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ This is just another reason not to use the question mark operator `?` instead of
300300

301301
Sometimes we need to break out from multiple nested loops at once.
302302

303-
For example, in the code below we loop over `i` and `j`, prompting for the coordinates `(i, j)` from `(0,0)` to `(3,3)`:
303+
For example, in the code below we loop over `i` and `j`, prompting for the coordinates `(i, j)` from `(0,0)` to `(2,2)`:
304304

305305
```js run no-beautify
306306
for (let i = 0; i < 3; i++) {

0 commit comments

Comments
 (0)