diff --git a/1-js/11-async/07-microtask-queue/article.md b/1-js/11-async/07-microtask-queue/article.md index 820aa312..0ea6fef4 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.