From eaa1984d414ce46722c53a95aaa653e746a1ddbd Mon Sep 17 00:00:00 2001 From: Sahan Serasinghe Date: Tue, 1 Oct 2019 22:27:05 +0930 Subject: [PATCH] docs: change "patchMatch" to "pathMatch" (#32935) PR Close #32935 --- packages/router/src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/router/src/config.ts b/packages/router/src/config.ts index b871429a66..9ba6564de9 100644 --- a/packages/router/src/config.ts +++ b/packages/router/src/config.ts @@ -312,7 +312,7 @@ export type RunGuardsAndResolvers = 'pathParamsChange' | 'pathParamsOrQueryParam * the router would apply the redirect even when navigating to the redirect destination, * creating an endless loop. * - * In the following example, supplying the 'full' `patchMatch` strategy ensures + * In the following example, supplying the 'full' `pathMatch` strategy ensures * that the router applies the redirect if and only if navigating to '/'. * * ```