From caa908326f19da7d2c292e61cb9fc29cdc21248d Mon Sep 17 00:00:00 2001 From: romeobravo Date: Tue, 19 Sep 2023 03:41:18 +0200 Subject: [PATCH] chore: Fix heading hierarchy in revalidateTag documentation (#55470) ### What? Fix heading hierarchy in revalidateTag documentation (https://nextjs.org/docs/app/api-reference/functions/revalidateTag) ### Why? Makes it consistent with https://nextjs.org/docs/app/api-reference/functions/revalidatePath --- docs/02-app/02-api-reference/04-functions/revalidateTag.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/02-api-reference/04-functions/revalidateTag.mdx b/docs/02-app/02-api-reference/04-functions/revalidateTag.mdx index dd8680f59df3e..364c8bc47eb8b 100644 --- a/docs/02-app/02-api-reference/04-functions/revalidateTag.mdx +++ b/docs/02-app/02-api-reference/04-functions/revalidateTag.mdx @@ -30,7 +30,7 @@ fetch(url, { next: { tags: [...] } }); ## Examples -## Server Action +### Server Action ```ts filename="app/actions.ts" switcher 'use server'