Merge pull request #1176 from Vivek-raj/patch-1

Fix English Grammar
This commit is contained in:
Ilya Kantor 2019-07-23 22:51:03 +03:00 committed by GitHub
commit d3ccd26cc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -175,7 +175,7 @@ let timerId = setTimeout(function request() {
``` ```
And if we the functions that we're scheduling are CPU-hungry, then we can measure the time taken by the execution and plan the next call sooner or later. And if the functions that we're scheduling are CPU-hungry, 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.**