From 6d9ef9c0e935e9131dd1addacc2307c41e808a89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Otterstr=C3=B6m?= <35617441+MarcusOtter@users.noreply.github.com> Date: Fri, 30 Jul 2021 09:53:24 +0200 Subject: [PATCH] Fix typos and clarify docs (#880) * Add more missing words * Add missing dot * Add another missing dot * Clarify what optimized css means (discussed on Discord) * Remove oxford comma Co-authored-by: Fred K. Schott --- docs/src/pages/core-concepts/component-hydration.md | 2 +- docs/src/pages/guides/deploy.md | 3 ++- docs/src/pages/guides/styling.md | 2 +- docs/src/pages/reference/renderer-reference.md | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/src/pages/core-concepts/component-hydration.md b/docs/src/pages/core-concepts/component-hydration.md index 9aeadb79c..a4c25cf26 100644 --- a/docs/src/pages/core-concepts/component-hydration.md +++ b/docs/src/pages/core-concepts/component-hydration.md @@ -85,7 +85,7 @@ Hydrate the component as soon as the browser matches the given media query (uses [Astro components](./astro-components) (`.astro` files) are HTML-only templating components with no client-side runtime. If you try to hydrate an Astro component with a `client:` modifier, you will get an error. -To make your Astro component interactive, you will need to convert it to the frontend framework of your choice: React, Svelte, Vue, etc. If you have no preference, we recommend React or Preact as most similar to Astro's syntax. +To make your Astro component interactive, you will need to convert it to the frontend framework of your choice: React, Svelte, Vue, etc. If you have no preference, we recommend React or Preact as they are most similar to Astro's syntax. Alternatively, you could add a `