From 6cf0f086e7d2cd05c381b6de802919796a3e9d30 Mon Sep 17 00:00:00 2001 From: Peter Roche <46547072+paroche@users.noreply.github.com> Date: Thu, 13 Feb 2020 20:34:23 -0700 Subject: [PATCH] Update article.md "using nested `setTimeout`:" -> "using nested `setTimeout` calls:" --- 2-ui/99-ui-misc/03-event-loop/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/99-ui-misc/03-event-loop/article.md b/2-ui/99-ui-misc/03-event-loop/article.md index 55dac4f0..ad50e895 100644 --- a/2-ui/99-ui-misc/03-event-loop/article.md +++ b/2-ui/99-ui-misc/03-event-loop/article.md @@ -80,7 +80,7 @@ count(); The browser may even show "the script takes too long" warning. -Let's split the job using nested `setTimeout`: +Let's split the job using nested `setTimeout` calls: ```js run let i = 0;