From 8422a68bbb0b6178d24d79527f8698f9fa4d1d0f Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Tue, 28 Apr 2020 17:29:49 +0200 Subject: [PATCH] docs: add missing hyphen --- src/navigationGuards.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/navigationGuards.ts b/src/navigationGuards.ts index a2e46667..fba11dbe 100644 --- a/src/navigationGuards.ts +++ b/src/navigationGuards.ts @@ -27,7 +27,7 @@ import { isESModule } from './utils' * left. Similarly to {@link beforeRouteLeave}, it has access to the * component instance as `this`. * - * @param leaveGuard {@link NavigationGuard} + * @param leaveGuard - {@link NavigationGuard} */ export function onBeforeRouteLeave(leaveGuard: NavigationGuard) { const instance = getCurrentInstance() @@ -59,7 +59,7 @@ export function onBeforeRouteLeave(leaveGuard: NavigationGuard) { * updated. Similarly to {@link beforeRouteUpdate}, it has access to the * component instance as `this`. * - * @param updateGuard {@link NavigationGuard} + * @param updateGuard - {@link NavigationGuard} */ export function onBeforeRouteUpdate(updateGuard: NavigationGuard) { const instance = getCurrentInstance() -- 2.47.2