Merge pull request #507 from shahbazsyed/patch-1

Fixed a typo in article.md
This commit is contained in:
Ilya Kantor 2017-04-17 21:40:59 +02:00 committed by GitHub
commit 8fc01fa0fe

View file

@ -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.** **Recursive `setTimeout` guarantees a delay between the executions, `setInterval` -- does not.**