diff --git a/.changeset/fluffy-lies-eat.md b/.changeset/fluffy-lies-eat.md new file mode 100644 index 000000000000..3b26608ae461 --- /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 bba1ca32dca0..1b8c803e2d53 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; }; }