From 484b24de37d8bdff33365a62df3e7c242d1145eb Mon Sep 17 00:00:00 2001 From: Peter Roche <46547072+paroche@users.noreply.github.com> Date: Tue, 26 Nov 2019 22:18:54 -0700 Subject: [PATCH] Update article.md 'awaits till `onclick`' -> "waits until the `onclick`". "awaits" doesn't usually go with "until" (or "till" or "'til"). I can await someone's arrival, or I can wait until they arrive. An alternate phrasing using "await" could be "it awaits the completion of the `onclick` processing". --- 2-ui/2-events/05-dispatch-events/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-ui/2-events/05-dispatch-events/article.md b/2-ui/2-events/05-dispatch-events/article.md index 771f5527bd..ad9092fd86 100644 --- a/2-ui/2-events/05-dispatch-events/article.md +++ b/2-ui/2-events/05-dispatch-events/article.md @@ -211,7 +211,7 @@ Please note: the event must have the flag `cancelable: true`, otherwise the call ## Events-in-events are synchronous -Usually events are processed asynchronously. That is: if the browser is processing `onclick` and in the process a new event occurs, then it awaits till `onclick` processing is finished. +Usually events are processed asynchronously. That is: if the browser is processing `onclick` and in the process a new event occurs, then it waits until the `onclick` processing is finished. The exception is when one event is initiated from within another one.