From db9b5805c46451fcea467adf0a42be65144fb3dd Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 12 Feb 2020 07:40:30 +0000 Subject: [PATCH] closes #1747 --- 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 c8f7361969..17a9642931 100644 --- a/2-ui/99-ui-misc/03-event-loop/article.md +++ b/2-ui/99-ui-misc/03-event-loop/article.md @@ -263,7 +263,7 @@ What's going to be the order here? 2. `promise` shows second, because `.then` passes through the microtask queue, and runs after the current code. 3. `timeout` shows last, because it's a macrotask. -The richer event loop picture looks like this: +The richer event loop picture looks like this (order is from bottom to top, that is: `setTimeout` first, then microtasks and so on): ![](eventLoop-full.svg)