fix typo and minor grammatical error

This commit is contained in:
Violet Bora Lee 2020-08-30 19:57:20 +09:00
parent f830bc5d94
commit 4bd8ce5391

View file

@ -59,7 +59,7 @@ The possible values of `event.button` are:
| Button state | `event.button` |
|--------------|----------------|
| Left button (primary) | 0 |
| Middle button (auxillary) | 1 |
| Middle button (auxiliary) | 1 |
| Right button (secondary) | 2 |
| X1 button (back) | 3 |
| X2 button (forward) | 4 |
@ -156,7 +156,7 @@ Move the mouse over the input field to see `clientX/clientY` (the example is in
Double mouse click has a side-effect that may be disturbing in some interfaces: it selects text.
For instance, a double-click on the text below selects it in addition to our handler:
For instance, double-clicking on the text below selects it in addition to our handler:
```html autorun height=50
<span ondblclick="alert('dblclick')">Double-click me</span>