Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

docs: replace backtick with apostrophe #7015

Merged
merged 1 commit into from
Aug 29, 2022
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
2 changes: 1 addition & 1 deletion docs/content/bridge/2.bridge-composition-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You may also keep using Nuxt 2-style plugins, by removing the function (as with
Remove the `defineNuxtPlugin` wrapper:

```diff
- import { defineNuxtPlugin } from '@nuxtjs/composition-api`
- import { defineNuxtPlugin } from '@nuxtjs/composition-api'
- export default defineNuxtPlugin((ctx, inject) => {})
+ export default (ctx, inject) => {}
```
Expand Down