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 412e2e3e..dfc08b77 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 `(*)`: 2. Second run: `i=1000001..2000000`. 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. +Then the next call is scheduled in `(**)` if we're not done yet. Pauses between `count` executions provide just enough "breath" for the JavaScript engine to do something else, to react to other user actions.