diff --git a/src/content/docs/en/guides/content-collections.mdx b/src/content/docs/en/guides/content-collections.mdx index 6a2aaf13e9332..20449ba4850b0 100644 --- a/src/content/docs/en/guides/content-collections.mdx +++ b/src/content/docs/en/guides/content-collections.mdx @@ -412,7 +412,7 @@ const englishDocsEntries = await getCollection('docs', ({ id }) => { ### Using content in Astro templates -Once you have queried your collection entries, you can access each entry directly inside of your Astro component template. This lets you to render HTML for things like links to your content (using the content `slug`) or information about your content (using the `data` property). +Once you have queried your collection entries, you can access each entry directly inside of your Astro component template. This lets you render HTML for things like links to your content (using the content `slug`) or information about your content (using the `data` property). For information about rendering your content to HTML, see [Rendering Content to HTML](#rendering-content-to-html) below.