From c83a15241e22a2bf78b7eab8a66efc8b72b4ce52 Mon Sep 17 00:00:00 2001 From: Avevrr <47205349+Avevrr@users.noreply.github.com> Date: Sat, 30 Nov 2019 14:21:32 -0500 Subject: [PATCH] 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 --- site/content/tutorial/05-events/01-dom-events/text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/tutorial/05-events/01-dom-events/text.md b/site/content/tutorial/05-events/01-dom-events/text.md index 1c08c9159a..5a2cd4ccdc 100644 --- a/site/content/tutorial/05-events/01-dom-events/text.md +++ b/site/content/tutorial/05-events/01-dom-events/text.md @@ -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: ```html -
+
The mouse position is {m.x} x {m.y}
-``` \ No newline at end of file +```