diff --git a/1-js/06-advanced-functions/08-settimeout-setinterval/article.md b/1-js/06-advanced-functions/08-settimeout-setinterval/article.md index e52feac7..2eb2121d 100644 --- a/1-js/06-advanced-functions/08-settimeout-setinterval/article.md +++ b/1-js/06-advanced-functions/08-settimeout-setinterval/article.md @@ -319,7 +319,7 @@ We do a part of the job `(*)`: 1. First run: `i=1...1000000`. 2. Second run: `i=1000001..2000000`. -3. ...and so on, the `while` checks if `i` is evenly divided by `100000`. +3. ...and so on, the `while` checks if `i` is evenly divided by `1000000`. Then the next call is scheduled in `(*)` if we're not done yet.