diff --git a/docs/content/2.get-started.md b/docs/content/2.get-started.md index 3f28a9d0f..62680da50 100644 --- a/docs/content/2.get-started.md +++ b/docs/content/2.get-started.md @@ -108,17 +108,17 @@ export default defineNuxtConfig({ ## Create content -Place your markdown files inside `content` directory in the root directory of your project. +Place your markdown files inside the `content/` directory in the root directory of your project. ```md [content/index.md] # Hello Content ``` -The module automatically load and parse all of them. +The module automatically loads and parses them. ## Render pages -To render content pages, you may wish to add a [catch-all route](https://v3.nuxtjs.org/guide/directory-structure/pages/#catch-all-route) using the `ContentDoc` component to do so: +To render content pages, add a [catch-all route](https://v3.nuxtjs.org/guide/directory-structure/pages/#catch-all-route) using the `ContentDoc` component: ```vue [pages/[...slug].vue]