From a78fa266850a0c8e0b42a0909eacbd577483b9f6 Mon Sep 17 00:00:00 2001 From: Shinya Fujino Date: Fri, 10 May 2024 23:27:49 +0900 Subject: [PATCH] docs: fix indentation in experimental.actions code examples (#11001) --- packages/astro/src/@types/astro.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index a21426470a96..a6fc56beae7c 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1734,7 +1734,7 @@ export interface AstroUserConfig { * * ```js * { - * output: 'hybrid', // or 'server' + * output: 'hybrid', // or 'server' * experimental: { * actions: true, * }, @@ -1761,7 +1761,7 @@ export interface AstroUserConfig { * }, * }), * comment: defineAction({ - * accept: 'form', + * accept: 'form', * input: z.object({ * postId: z.string(), * author: z.string(),