From 38124971b9d029ad421a7d3837b15ce9ea36257a Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Tue, 30 Jan 2018 08:47:35 +0100 Subject: [PATCH] Typo --- 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 e52feac7..2eb2121d 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 `(*)`: 1. First run: `i=1...1000000`. 2. Second run: `i=1000001..2000000`. -3. ...and so on, the `while` checks if `i` is evenly divided by `100000`. +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.