Fix minor typo error: change when when to when

This commit is contained in:
LeviDing 2020-07-18 15:38:36 +08:00 committed by GitHub
parent 72482bc435
commit 356d5278cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ We've already seen some of these events:
: Triggers after two clicks on the same element within a short timeframe. Rarely used nowadays. : Triggers after two clicks on the same element within a short timeframe. Rarely used nowadays.
`contextmenu` `contextmenu`
: Triggers when when the right mouse button is pressed. There are other ways to open a context menu, e.g. using a special keyboard key, it triggers in that case also, so it's not exactly the mouse event. : Triggers when the right mouse button is pressed. There are other ways to open a context menu, e.g. using a special keyboard key, it triggers in that case also, so it's not exactly the mouse event.
...There are several other events too, we'll cover them later. ...There are several other events too, we'll cover them later.