diff options
author | 2021-07-27 04:25:48 +0200 | |
---|---|---|
committer | 2021-07-26 21:25:48 -0500 | |
commit | c14d2550b23566e236cc231e6bd51b7505bbd7b9 (patch) | |
tree | 9f9a7e7b13c087a681e7f0bb7082cb609eacf4fa | |
parent | c8896bd02139ecc96227dfd934a236136e153ef0 (diff) | |
download | astro-c14d2550b23566e236cc231e6bd51b7505bbd7b9.tar.gz astro-c14d2550b23566e236cc231e6bd51b7505bbd7b9.tar.zst astro-c14d2550b23566e236cc231e6bd51b7505bbd7b9.zip |
Add missing word (#879)
Diffstat (limited to '')
-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 a2a476a37..a72c5121b 100644 --- a/docs/src/pages/core-concepts/astro-components.md +++ b/docs/src/pages/core-concepts/astro-components.md @@ -248,7 +248,7 @@ Slots can also render **fallback content**. When there are no matching children An Astro component template can render as many top-level elements as you'd like. Unlike other UI component frameworks, you don't need to wrap everything in a single `<div>` if you'd prefer not to. ```html -<!-- An Astro component can multiple top-level HTML elements: --> +<!-- An Astro component can contain multiple top-level HTML elements: --> <div id="a" /> <div id="b" /> <div id="c" /> |