Merge pull request #2014 from leviding/patch-20

Fix minor typo error: change when when to when
This commit is contained in:
Ilya Kantor 2020-07-18 14:06:24 +03:00 committed by GitHub
commit 841d7504e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

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