From ffdcac4e0cd79f90afc32f200652bce71db57b7e Mon Sep 17 00:00:00 2001 From: diamondhero1 Date: Sun, 8 Sep 2024 18:37:12 -0400 Subject: [PATCH] docs: extraneous backslashes removed (#57725) PR Close #57725 --- adev/src/content/guide/routing/common-router-tasks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/routing/common-router-tasks.md b/adev/src/content/guide/routing/common-router-tasks.md index 77c1d151969..0d5b4fcf60d 100644 --- a/adev/src/content/guide/routing/common-router-tasks.md +++ b/adev/src/content/guide/routing/common-router-tasks.md @@ -186,7 +186,7 @@ To set up a wildcard route, add the following code to your `routes` definition. -{ path: '\*\*', component: } +{ path: '**', component: }