From 5f5ae96240d219bd35b490e3be9a8b5cc42951b5 Mon Sep 17 00:00:00 2001 From: Kevin Yang Date: Wed, 29 Aug 2018 17:58:47 -0400 Subject: [PATCH] Fixed code reference in explanation The original reference was to (*), but it should actually be to (**) --- 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 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.