diff --git a/docs/content/3.api/1.composables/use-router.md b/docs/content/3.api/1.composables/use-router.md index 899e6f3c3f8..f2bd74a7843 100644 --- a/docs/content/3.api/1.composables/use-router.md +++ b/docs/content/3.api/1.composables/use-router.md @@ -12,7 +12,7 @@ If you have a `pages/` folder, `useRouter` is identical in behavior to the one p - **addRoute:** Add a new route to the router instance. `parentName` can be provided to add new route as the child of an existing route. - **removeRoute:** Remove an existing route by its name. - **getRoutes:** Get a full list of all the route records. -- **hasRoute:** Checks if a route with a given name exists +- **hasRoute:** Checks if a route with a given name exists. ## Based on history API diff --git a/packages/schema/src/config/_adhoc.ts b/packages/schema/src/config/_adhoc.ts index 1d8b2e4ebe6..b8e1243ba6f 100644 --- a/packages/schema/src/config/_adhoc.ts +++ b/packages/schema/src/config/_adhoc.ts @@ -46,7 +46,7 @@ export default { pages: undefined, /** - * Manually disable nuxt telemetry + * Manually disable nuxt telemetry. * * @see [Nuxt Telemetry](https://github.com/nuxt/telemetry) for more information. * diff --git a/packages/schema/src/types/components.ts b/packages/schema/src/types/components.ts index a4218bb6454..8380fecc6e1 100644 --- a/packages/schema/src/types/components.ts +++ b/packages/schema/src/types/components.ts @@ -69,7 +69,7 @@ export interface ScanDir { extendComponent?: (component: Component) => Promise | (Component | void) /** - * If enabled, registers components to be globally available + * If enabled, registers components to be globally available. * */ global?: boolean