From 4c027e4b40ea2bce86a4cebae8cb977ab4a26348 Mon Sep 17 00:00:00 2001 From: Josh Jancourtz <66430238+jcolpal@users.noreply.github.com> Date: Fri, 15 Sep 2023 11:58:02 -0400 Subject: [PATCH] docs(nuxt): remove hanging word in modules docs (#23242) --- docs/2.guide/3.going-further/3.modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/2.guide/3.going-further/3.modules.md b/docs/2.guide/3.going-further/3.modules.md index 5aa96a6163..e68e16ba38 100644 --- a/docs/2.guide/3.going-further/3.modules.md +++ b/docs/2.guide/3.going-further/3.modules.md @@ -542,7 +542,7 @@ export default defineNuxtModule({ You might also want to add a type declaration to the user's project (for example, to augment a Nuxt interface or provide a global type of your own). For this, Nuxt provides the `addTypeTemplate` utility that both -writes a template to the disk and adds a reference to it in the generated `nuxt.d.ts` file that. +writes a template to the disk and adds a reference to it in the generated `nuxt.d.ts` file. If your module should augment types handled by Nuxt, you can use `addTypeTemplate` to perform this operation: