Minor grammar

This commit is contained in:
Dave Mackey 2022-09-06 11:03:36 -04:00 committed by GitHub
parent 53b35c1683
commit 131a3a7d09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -192,7 +192,7 @@ There's a property `event.eventPhase` that tells us the number of the phase on w
If we `addEventListener(..., true)`, then we should mention the same phase in `removeEventListener(..., true)` to correctly remove the handler.
```
````smart header="Listeners on same element and same phase run in their set order"
````smart header="Listeners on the same element and same phase run in their set order"
If we have multiple event handlers on the same phase, assigned to the same element with `addEventListener`, they run in the same order as they are created:
```js