Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(metadata): Fix spelling/typos #10027

Merged
merged 1 commit into from
Feb 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/docs/seo-head.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -227,7 +227,7 @@ If you define _any_ `og` prop, we will copy any `title` and `description` to an
<meta property="og:title" content="My Website" />
```

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
<Metadata title="My Website" og={{ title: null }}/>
Expand Down Expand Up @@ -272,7 +272,7 @@ If you define a `charSet` prop we will create a `<meta>` tag with the `charset`
<meta charset="utf-8" />
```

We simplifed 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:
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 />
Expand Down
Loading