aboutsummaryrefslogtreecommitdiff
path: root/docs/reference
diff options
context:
space:
mode:
authorGravatar mundry <1453314+mundry@users.noreply.github.com> 2021-08-20 01:56:58 +0200
committerGravatar GitHub <noreply@github.com> 2021-08-19 17:56:58 -0600
commitcdbe2e486d56eeeae7a11f51837faa8aaa955d8e (patch)
tree85c919c275da969fa231a478edb3efbcc0c2091d /docs/reference
parenta421329f8fc3fbcba70f3401cff4b9cf65f3f2eb (diff)
downloadastro-cdbe2e486d56eeeae7a11f51837faa8aaa955d8e.tar.gz
astro-cdbe2e486d56eeeae7a11f51837faa8aaa955d8e.tar.zst
astro-cdbe2e486d56eeeae7a11f51837faa8aaa955d8e.zip
Fix typos in the docs. (#1165)
Co-authored-by: mundry <mundry@users.noreply.github.com>
Diffstat (limited to 'docs/reference')
-rw-r--r--docs/reference/api-reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/api-reference.md b/docs/reference/api-reference.md
index ec78948dd..3f3d8526b 100644
--- a/docs/reference/api-reference.md
+++ b/docs/reference/api-reference.md
@@ -171,7 +171,7 @@ Astro will generate an RSS 2.0 feed at `/feed/[collection].xml` (for example, `/
All ESM modules include a `import.meta` property. Astro adds `import.meta.env` through [Snowpack](https://www.snowpack.dev/).
-**import.meta.env.SSR** can be used to know when rendering on the server. Some times you might want different logic, for example a component that should only be rendered in the client:
+**import.meta.env.SSR** can be used to know when rendering on the server. Sometimes you might want different logic, for example a component that should only be rendered in the client:
```jsx
import { h } from 'preact';