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: fix apostrophe character #1633

Merged
merged 2 commits into from
Oct 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content/3.guide/1.writing/7.document-driven.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ my-project/
tsconfig.json
```

It comes with a direct binding between your page’s meta data to the OpenGraph tags using the [useContentHead() composable](/api/composables/use-content-head), providing effective SEO with no configuration.
It comes with a direct binding between your page's meta data to the OpenGraph tags using the [useContentHead() composable](/api/composables/use-content-head), providing effective SEO with no configuration.

### Page slots

Expand Down Expand Up @@ -230,4 +230,4 @@ definePageMeta({

## Example

Jump into the [Document Driven Example](/examples/essentials/document-driven) to see a working example.
Jump into the [Document Driven Example](/examples/essentials/document-driven) to see a working example.
2 changes: 1 addition & 1 deletion docs/content/3.guide/3.recipes/1.sitemap.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This can be created by utilising the `sitemap` library, which can be installed a

## Server Route

We will be utilising the [server routes](https://v3.nuxtjs.org/guide/features/server-routes) available within Nuxt, and to do so you'll need to create the `server/` directory within your website`s root directly.
We will be utilising the [server routes](https://v3.nuxtjs.org/guide/features/server-routes) available within Nuxt, and to do so you'll need to create the `server/` directory within your website's root directly.

Once this is done, create a `routes/` directory inside this, and add a `sitemap.xml.ts` file, this will translate to `/sitemap.xml`.

Expand Down