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 993265c7..9d9e4611 100644 --- a/1-js/06-advanced-functions/08-settimeout-setinterval/article.md +++ b/1-js/06-advanced-functions/08-settimeout-setinterval/article.md @@ -178,7 +178,7 @@ let timerId = setTimeout(function request() { ``` -And if we regulary have CPU-hungry tasks, then we can measure the time taken by the execition and plan the next call sooner or later. +And if we regulary have CPU-hungry tasks, then we can measure the time taken by the execution and plan the next call sooner or later. **Recursive `setTimeout` guarantees a delay between the executions, `setInterval` -- does not.**