diff options
author | 2021-08-18 18:04:11 +0200 | |
---|---|---|
committer | 2021-08-18 09:04:11 -0700 | |
commit | d18402de3a305f3c21376484167d7129a512aff8 (patch) | |
tree | f6b7a193fb2752b5a7536ad0c73f5235bdca2363 | |
parent | f4169f92fe1cc94183c10f0fd10a0c0913ab4aad (diff) | |
download | astro-d18402de3a305f3c21376484167d7129a512aff8.tar.gz astro-d18402de3a305f3c21376484167d7129a512aff8.tar.zst astro-d18402de3a305f3c21376484167d7129a512aff8.zip |
Fix typo (#1151)
-rw-r--r-- | docs/src/pages/core-concepts/astro-components.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/core-concepts/astro-components.md b/docs/src/pages/core-concepts/astro-components.md index bbf4ec9c0..1faa65d0f 100644 --- a/docs/src/pages/core-concepts/astro-components.md +++ b/docs/src/pages/core-concepts/astro-components.md @@ -314,7 +314,7 @@ Since `src/pages/about.astro` will build to `/about/index.html`, you may not hav <img src="/thumbnail.png" /> ``` -The recommended approach is to place files within `public/*`. This references a file it `public/thumbnail.png`, which will resolve to `/thumbnail.png` at the final build (since `public/` ends up at `/`). +The recommended approach is to place files within `public/*`. This references a file at `public/thumbnail.png`, which will resolve to `/thumbnail.png` at the final build (since `public/` ends up at `/`). #### Option 2: Asset import references |