From 18d2dd19d2d8c59e6a3691d001b3182c07e3621a Mon Sep 17 00:00:00 2001 From: AnPineau <50783910+AnPineau@users.noreply.github.com> Date: Wed, 13 Jul 2022 12:22:07 +0200 Subject: [PATCH] docs: fix typo (#5863) --- docs/content/2.guide/2.features/7.error-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/2.guide/2.features/7.error-handling.md b/docs/content/2.guide/2.features/7.error-handling.md index c65ed759f8..e527e402a4 100644 --- a/docs/content/2.guide/2.features/7.error-handling.md +++ b/docs/content/2.guide/2.features/7.error-handling.md @@ -14,7 +14,7 @@ You can hook into Vue errors using [`onErrorCaptured`](https://vuejs.org/api/com In addition, Nuxt provides a `vue:error` hook that will be called if any errors propagate up to the top level. -If you are using a error reporting framework, you can provide a global handler through [`vueApp.config.errorHandler`](https://vuejs.org/api/application.html#app-config-errorhandler). It will receive all Vue errors, even if they are handled. +If you are using an error reporting framework, you can provide a global handler through [`vueApp.config.errorHandler`](https://vuejs.org/api/application.html#app-config-errorhandler). It will receive all Vue errors, even if they are handled. #### Example with global error reporting framework