From 6fb655263fc0ccc94a9df0125c85a0de7e351378 Mon Sep 17 00:00:00 2001 From: Shinya Fujino Date: Fri, 15 Dec 2023 08:38:32 +0900 Subject: [PATCH] Update inline handlers doc to match text to code (#480) --- .../tutorial/01-svelte/05-events/02-inline-handlers/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorial/01-svelte/05-events/02-inline-handlers/README.md b/content/tutorial/01-svelte/05-events/02-inline-handlers/README.md index 7b59d9e56..b0aa0f9bf 100644 --- a/content/tutorial/01-svelte/05-events/02-inline-handlers/README.md +++ b/content/tutorial/01-svelte/05-events/02-inline-handlers/README.md @@ -20,7 +20,7 @@ You can also declare event handlers inline: m = { x: e.clientX, y: e.clientY }; }+++} > - The mouse position is {m.x} x {m.y} + The pointer is at {m.x} x {m.y} ```