Fixes typo in Tutorial DOM Events - issue #4023

Fixes https://github.com/sveltejs/svelte/issues/4023

Typo in tutorial. Should be "mouseover" instead of "mouseove"

Testing:
- works in browser with correction
pull/4024/head
Avevrr 6 years ago committed by GitHub
parent 13ef75be22
commit c83a15241e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,7 +5,7 @@ title: DOM events
As we've briefly seen already, you can listen to any event on an element with the `on:` directive: As we've briefly seen already, you can listen to any event on an element with the `on:` directive:
```html ```html
<div on:mousemove={handleMousemove}> <div on:mousemover={handleMousemove}>
The mouse position is {m.x} x {m.y} The mouse position is {m.x} x {m.y}
</div> </div>
``` ```
Loading…
Cancel
Save