From ad9bef80715382abc54f0ef09c441e3925b10f95 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Sat, 17 Feb 2024 11:43:27 +0100 Subject: [PATCH] docs(metadata): Fix spelling/typos (#10027) --- docs/docs/seo-head.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/seo-head.md b/docs/docs/seo-head.md index 63d2fb01a6af..7cb5772edd62 100644 --- a/docs/docs/seo-head.md +++ b/docs/docs/seo-head.md @@ -8,7 +8,7 @@ Search Engine Optimization is a dark art that some folks dedicate their entire l ## Adding a Title -You certainly want to change the title of your Redwood app from the default of "Redwood App." You can start by adding or modifing `title` inside of `/redwood.toml` +You certainly want to change the title of your Redwood app from the default of "Redwood App." You can start by adding or modifying `title` inside of `/redwood.toml` ```diff title=redwood.toml [web] @@ -227,7 +227,7 @@ If you define _any_ `og` prop, we will copy any `title` and `description` to an ``` -You can override this behavior by explictly setting `og:title` or `og:description` to `null`: +You can override this behavior by explicitly setting `og:title` or `og:description` to `null`: ```jsx @@ -272,7 +272,7 @@ If you define a `charSet` prop we will create a `` tag with the `charset` ``` -We simplifed some of the examples above by excluding the generated `` and `og:type` tags, so here's the real output if you included `title` and `og` props: +We simplified some of the examples above by excluding the generated `<title>` and `og:type` tags, so here's the real output if you included `title` and `og` props: ```jsx <Metadata title="My Website" og />