docs: fix typo (#19779)

This commit is contained in:
Cue 2023-03-18 06:53:54 +00:00 committed by GitHub
parent e57c797f2b
commit 2c642328c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ How to test your Nuxt application.
::alert{icon=👉}
Test utils are still in development and the API and behavior may change. Currently, it is in preview stage but not yet ready for testing production apps.
If you are a module author, you can find more specific informations in the [Module Author's guide](/docs/guide/going-further/modules#testing)
If you are a module author, you can find more specific information in the [Module Author's guide](/docs/guide/going-further/modules#testing)
::
In Nuxt 3, we have a rewritten version of `@nuxt/test-utils`. We support [Vitest](https://github.com/vitest-dev/vitest) and [Jest](https://jestjs.io/) as test runners.

View File

@ -171,7 +171,7 @@ It's recommended to use getters (`() => value`) over computed (`computed(() => v
```vue [useSeoMeta]
<script setup lang="ts">
const desc = ref('My amazing site.')
const description = ref('My amazing site.')
useSeoMeta({
description