From f5f75502a10e9b18fede19c06f530a3893357157 Mon Sep 17 00:00:00 2001 From: Anton Krekotun <36279559+tonchique@users.noreply.github.com> Date: Thu, 6 Jun 2019 12:21:21 +0300 Subject: [PATCH] Update article.md Fixed sentence structure --- 1-js/11-async/07-microtask-queue/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/07-microtask-queue/article.md b/1-js/11-async/07-microtask-queue/article.md index 1918ea04..2075c9fd 100644 --- a/1-js/11-async/07-microtask-queue/article.md +++ b/1-js/11-async/07-microtask-queue/article.md @@ -58,7 +58,7 @@ In-browser JavaScript execution flow, as well as Node.js, is based on an *event "Event loop" is a process when the engine sleeps and waits for events. When they occur - handles them and sleeps again. -Events may come either comes from external sources, like user actions, or just as the end signal of an internal task. +Events may come either from external sources, like user actions, or just as the end signal of an internal task. Examples of events: - `mousemove`, a user moved their mouse.