summaryrefslogtreecommitdiff
path: root/docs/src/pages/reference
diff options
context:
space:
mode:
authorGravatar mundry <1453314+mundry@users.noreply.github.com> 2021-08-12 20:24:06 +0200
committerGravatar GitHub <noreply@github.com> 2021-08-12 13:24:06 -0500
commitcbae535cad6790b60affc5391d3cab194701ee65 (patch)
tree9576a0c1bd390acbf7ef161e34b99160df8b02d5 /docs/src/pages/reference
parentfbbb589d921cae62f42694c3081ebf8378d24a80 (diff)
downloadastro-cbae535cad6790b60affc5391d3cab194701ee65.tar.gz
astro-cbae535cad6790b60affc5391d3cab194701ee65.tar.zst
astro-cbae535cad6790b60affc5391d3cab194701ee65.zip
Fix typos in the docs/ content (#1093)
Co-authored-by: mundry <mundry@users.noreply.github.com>
Diffstat (limited to 'docs/src/pages/reference')
-rw-r--r--docs/src/pages/reference/api-reference.md2
-rw-r--r--docs/src/pages/reference/renderer-reference.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/pages/reference/api-reference.md b/docs/src/pages/reference/api-reference.md
index c4c214363..148241691 100644
--- a/docs/src/pages/reference/api-reference.md
+++ b/docs/src/pages/reference/api-reference.md
@@ -160,7 +160,7 @@ const { page } = Astro.props;
#### The pagination `page` prop
-Pagination will pass a `page` prop to every rendered page that represents a single page of data in the paginated collection. This includes the data that you've paginated (`page.data`) as well as metadata for the page (`page.url`, `page.start`, `page.end`, `page.total`, etc). This metadata is useful for for things like a "Next Page" button or a "Showing 1-10 of 100" message.
+Pagination will pass a `page` prop to every rendered page that represents a single page of data in the paginated collection. This includes the data that you've paginated (`page.data`) as well as metadata for the page (`page.url`, `page.start`, `page.end`, `page.total`, etc). This metadata is useful for things like a "Next Page" button or a "Showing 1-10 of 100" message.
| Name | Type | Description |
| :----------------- | :-------------------: | :-------------------------------------------------------------------------------------------------------------------------------- |
diff --git a/docs/src/pages/reference/renderer-reference.md b/docs/src/pages/reference/renderer-reference.md
index d40e1732a..15c90a3c2 100644
--- a/docs/src/pages/reference/renderer-reference.md
+++ b/docs/src/pages/reference/renderer-reference.md
@@ -128,7 +128,7 @@ export default {
`check` is a function that determines whether a Component should be "claimed" by this renderer.
-In it's simplest form, it can check for the existence of a flag on Object-based components.
+In its simplest form, it can check for the existence of a flag on Object-based components.
```js
function check(Component) {