From fdf5756f15fddf15c18e0269c31f1ca868f6a50d Mon Sep 17 00:00:00 2001 From: Adrian Adkison Date: Fri, 23 Aug 2019 11:21:36 -0700 Subject: [PATCH] docs(guards): wording (#2190) Be consistent with referring to guard function names. --- docs/guide/advanced/navigation-guards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/advanced/navigation-guards.md b/docs/guide/advanced/navigation-guards.md index 5962cae3b..acb63f572 100644 --- a/docs/guide/advanced/navigation-guards.md +++ b/docs/guide/advanced/navigation-guards.md @@ -140,7 +140,7 @@ beforeRouteLeave (to, from, next) { ## The Full Navigation Resolution Flow 1. Navigation triggered. -2. Call leave guards in deactivated components. +2. Call `beforeRouteLeave` guards in deactivated components. 3. Call global `beforeEach` guards. 4. Call `beforeRouteUpdate` guards in reused components. 5. Call `beforeEnter` in route configs.