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/guides/RouteMatching.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ React Router uses the concept of nested routes to let you declare nested sets of
13
13
A route path is [a string pattern](/docs/Glossary.md#routepattern) that is used to match a URL (or a portion of one). Route paths are interpreted literally, except for the following special symbols:
14
14
15
15
-`:paramName` – matches a URL segment up to the next `/`, `?`, or `#`. The matched string is called a [param](/docs/Glossary.md#params)
16
-
-`()` – Wraps a portion of the URL that is optional. You may escape parentheses if you want to use them in a url using a blackslash\
16
+
-`()` – Wraps a portion of the URL that is optional. You may escape parentheses if you want to use them in a url using a backslash\
17
17
-`*` – Matches all characters (non-greedy) up to the next character in the pattern, or to the end of the URL if there is none, and creates a `splat`[param](/docs/Glossary.md#params)
18
18
-`**` - Matches all characters (greedy) until the next `/`, `?`, or `#` and creates a `splat`[param](/docs/Glossary.md#params)
0 commit comments