diff options
author | 2021-07-17 21:46:51 +0200 | |
---|---|---|
committer | 2021-07-17 15:46:51 -0400 | |
commit | f74112798b71e3a6fb8531190f721ba2db07888a (patch) | |
tree | 2570a05d675dcbd36c9d2c2d94db4ef77da42f45 /docs/src/pages/reference/api-reference.md | |
parent | 234b175a196345454bf33841572dc120d3581f45 (diff) | |
download | astro-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.md | 2 |
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'; |