You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/learn/routers-routes-and-links.md
+5-3
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ Here's a basic example showing how to use `#!python browser_router` with two rou
19
19
{% include "../../examples/python/basic-routing.py" %}
20
20
```
21
21
22
-
Here we'll note some special syntax in the route path for the second route. The `#!python "*"` is a wildcard that will match any path. This is useful for creating a "404" page that will be shown when no other route matches.
22
+
Here we'll note some special syntax in the route path for the second route. The `#!python "any"`type is a wildcard that will match any path. This is useful for creating a default page or error page such as "404 NOT FOUND".
23
23
24
24
### Browser Router
25
25
@@ -34,11 +34,13 @@ In this case, `#!python param` is the name of the route parameter and the option
0 commit comments