Skip to content

Commit ed704c1

Browse files
Igor Skuhartimdorr
Igor Skuhar
authored andcommitted
blackslash -> backslash (remix-run#4549)
1 parent 794551d commit ed704c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/RouteMatching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ React Router uses the concept of nested routes to let you declare nested sets of
1313
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:
1414

1515
- `: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 \
1717
- `*` – 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)
1818
- `**` - Matches all characters (greedy) until the next `/`, `?`, or `#` and creates a `splat` [param](/docs/Glossary.md#params)
1919

0 commit comments

Comments
 (0)