summaryrefslogtreecommitdiff
path: root/docs/src/pages/reference/api-reference.md
diff options
context:
space:
mode:
authorGravatar mundry <1453314+mundry@users.noreply.github.com> 2021-07-17 21:46:51 +0200
committerGravatar GitHub <noreply@github.com> 2021-07-17 15:46:51 -0400
commitf74112798b71e3a6fb8531190f721ba2db07888a (patch)
tree2570a05d675dcbd36c9d2c2d94db4ef77da42f45 /docs/src/pages/reference/api-reference.md
parent234b175a196345454bf33841572dc120d3581f45 (diff)
downloadastro-f74112798b71e3a6fb8531190f721ba2db07888a.tar.gz
astro-f74112798b71e3a6fb8531190f721ba2db07888a.tar.zst
astro-f74112798b71e3a6fb8531190f721ba2db07888a.zip
Fix typos in the documentation. (#731)
Co-authored-by: mundry <mundry@users.noreply.github.com>
Diffstat (limited to 'docs/src/pages/reference/api-reference.md')
-rw-r--r--docs/src/pages/reference/api-reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/reference/api-reference.md b/docs/src/pages/reference/api-reference.md
index 1be5d3c2c..9667af2ec 100644
--- a/docs/src/pages/reference/api-reference.md
+++ b/docs/src/pages/reference/api-reference.md
@@ -173,7 +173,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[dot]meta[dot]env` through [Snowpack](https://www.snowpack.dev/).
-**`import[dot]meta[dot]env[dot]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[dot]meta[dot]env[dot]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';