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".
This commit is contained in:
Peter Roche 2019-11-26 22:18:54 -07:00 committed by GitHub
parent f073dbdee9
commit 484b24de37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.