diff --git a/docs/core-concepts/component-hydration.md b/docs/core-concepts/component-hydration.md
index f03931534..240eab25b 100644
--- a/docs/core-concepts/component-hydration.md
+++ b/docs/core-concepts/component-hydration.md
@@ -27,9 +27,9 @@ With Astro, you can hydrate these components individually, without forcing the r
Astro renders every component on the server **at build time**. To hydrate any server-rendered component on the client **at runtime**, you may use any of the following techniques:
-- `` will hydrate the component on page load.
-- `` will use [requestIdleCallback()][mdn-ric] to hydrate the component as soon as main thread is free.
-- `` will use an [IntersectionObserver][mdn-io] to hydrate the component when the element enters the viewport.
+- `` will hydrate the component on page load.
+- `` will use [requestIdleCallback()][mdn-ric] to hydrate the component as soon as main thread is free.
+- `` will use an [IntersectionObserver][mdn-io] to hydrate the component when the element enters the viewport.
## Hydrate Astro Components