From 16013026db97373c696149d7c8ab1c2617206600 Mon Sep 17 00:00:00 2001 From: Syed Shahbaz Ahmed Date: Sun, 16 Apr 2017 10:31:14 +0200 Subject: [PATCH] Fixed a typo in article.md execition --> execution --- 1-js/06-advanced-functions/08-settimeout-setinterval/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.**