diff options
-rw-r--r-- | .changeset/fluffy-lies-eat.md | 5 | ||||
-rw-r--r-- | packages/astro/src/types/public/common.ts | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/.changeset/fluffy-lies-eat.md b/.changeset/fluffy-lies-eat.md new file mode 100644 index 000000000..3b26608ae --- /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 bba1ca32d..1b8c803e2 100644 --- a/packages/astro/src/types/public/common.ts +++ b/packages/astro/src/types/public/common.ts @@ -72,7 +72,7 @@ export interface Page<T = any> { 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; }; } |