docs: extraneous backslashes removed (#57725)

PR Close #57725
This commit is contained in:
diamondhero1 2024-09-08 18:37:12 -04:00 committed by Jessica Janiuk
parent 01ae0556e2
commit ffdcac4e0c

View file

@ -186,7 +186,7 @@ To set up a wildcard route, add the following code to your `routes` definition.
<docs-code>
{ path: '\*\*', component: <component-name> }
{ path: '**', component: <component-name> }
</docs-code>