docs: typo fixes (#1046)

This commit is contained in:
Daniel Roe 2021-10-15 11:14:17 +01:00 committed by GitHub
parent c9c6f37ae3
commit 91abb2bba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ In Nuxt 2 plugins, this was referred to as [inject function](https://nuxtjs.org/
## NuxtApp interface (advanced)
`nuxtApp` has the following prperties: (note: this is an internal interface and some properties might change until stable release)
`nuxtApp` has the following properties: (note: this is an internal interface and some properties might change until stable release)
```js
const nuxtApp = {

View File

@ -14,7 +14,7 @@ All plugins in your `plugins/` directory are auto-registered, so you should not
## Creating plugins
The only argument passed to a plugin is [`nuxtApp`]((/usage/nuxt-app)
The only argument passed to a plugin is [`nuxtApp`](/docs/usage/nuxt-app).
```ts
import { defineNuxtPlugin } from '#app'