diff --git a/.changeset/fluffy-lies-eat.md b/.changeset/fluffy-lies-eat.md new file mode 100644 index 0000000000..3b26608ae4 --- /dev/null +++ b/.changeset/fluffy-lies-eat.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +update comment in packages/astro/src/types/public/common.ts diff --git a/packages/astro/src/types/public/common.ts b/packages/astro/src/types/public/common.ts index bba1ca32dc..1b8c803e2d 100644 --- a/packages/astro/src/types/public/common.ts +++ b/packages/astro/src/types/public/common.ts @@ -72,7 +72,7 @@ export interface Page { next: string | undefined; /** url of the first page (if the current page is not the first page) */ first: string | undefined; - /** url of the next page (if the current page in not the last page) */ + /** url of the last page (if the current page is not the last page) */ last: string | undefined; }; }