From acb93568b009b078a33e8203bbbf598dc1bac788 Mon Sep 17 00:00:00 2001 From: Diego Augusto Molina Date: Mon, 25 Sep 2023 12:39:03 -0300 Subject: [PATCH] docs: fix typo in `Action` jsdoc (#9254) --- packages/svelte/src/runtime/action/public.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/svelte/src/runtime/action/public.d.ts b/packages/svelte/src/runtime/action/public.d.ts index afd92e116d..d6d41d9816 100644 --- a/packages/svelte/src/runtime/action/public.d.ts +++ b/packages/svelte/src/runtime/action/public.d.ts @@ -50,7 +50,7 @@ export interface ActionReturn< * // ... * } * ``` - * `Action` and `Action` both signal that the action accepts no parameters. + * `Action` and `Action` both signal that the action accepts no parameters. * * You can return an object with methods `update` and `destroy` from the function and type which additional attributes and events it has. * See interface `ActionReturn` for more details.