From ac7daa516fa8e687427eac51186af97154748afa Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 6 Apr 2022 11:58:55 +0300 Subject: [PATCH] minor fixes --- 2-ui/99-ui-misc/03-event-loop/2-micro-macro-queue/solution.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/2-ui/99-ui-misc/03-event-loop/2-micro-macro-queue/solution.md b/2-ui/99-ui-misc/03-event-loop/2-micro-macro-queue/solution.md index 5bc5026b..3a0daa97 100644 --- a/2-ui/99-ui-misc/03-event-loop/2-micro-macro-queue/solution.md +++ b/2-ui/99-ui-misc/03-event-loop/2-micro-macro-queue/solution.md @@ -47,6 +47,4 @@ To summarize, - The macrotask queue is now: `console.log(2); console.log(6); console.log(4)`. 3. After the microtask queue becomes empty, the macrotask queue executes. It outputs `2`, `6`, `4`. -Finally, we have the output: `1 7 3 5 2 6 4`. - -Получается вывод `1 7 3 5 2 6 4`. \ No newline at end of file +Finally, we have the output: `1 7 3 5 2 6 4`. \ No newline at end of file