From 2b676bb5fd7e548c9b518c68753fd9cf6cc369cd Mon Sep 17 00:00:00 2001 From: Ahmed Abdelbaset Date: Thu, 9 Nov 2023 00:23:09 +0200 Subject: [PATCH] chore: fix typo of type name in jsDoc --- packages/next/types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/next/types/index.d.ts b/packages/next/types/index.d.ts index e22cdbc21efb2..062e333c2f217 100644 --- a/packages/next/types/index.d.ts +++ b/packages/next/types/index.d.ts @@ -87,7 +87,7 @@ export type Redirect = } /** - * `Page` type, use it as a guide to create `pages`. + * `NextPage` type, use it as a guide to create `pages`. */ export type NextPage = NextComponentType< NextPageContext,