From 88baf802b4e6ca5e76a848862b4f9f52ae51afa0 Mon Sep 17 00:00:00 2001 From: Diego Augusto Molina Date: Sun, 24 Sep 2023 01:49:24 -0300 Subject: [PATCH] Fix small typo in documentation --- 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 afd92e116d8f..d6d41d98163c 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.