From f3e0db1e46f713643e6e601b1c3d2f25febe7b7e Mon Sep 17 00:00:00 2001 From: Wes Keiser <84772241+weskeiser@users.noreply.github.com> Date: Mon, 13 Nov 2023 10:48:39 +0100 Subject: [PATCH] docs: incorrect order of directives (#9414) The event listener must be registered before the event is dispatched in order for this code snippet to work. --- documentation/docs/03-runtime/07-svelte-action.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/03-runtime/07-svelte-action.md b/documentation/docs/03-runtime/07-svelte-action.md index ebd4185774..b5670a6ee2 100644 --- a/documentation/docs/03-runtime/07-svelte-action.md +++ b/documentation/docs/03-runtime/07-svelte-action.md @@ -72,7 +72,7 @@ Sometimes actions emit custom events and apply custom attributes to the element } -
+
``` ## Types