We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b8a9525 + 5b536e4 commit 29ea0ebCopy full SHA for 29ea0eb
docs/guides/basics/RouteMatching.md
@@ -20,7 +20,7 @@ A route path is [a string pattern](/docs/Glossary.md#routepattern) that is used
20
```js
21
<Route path="/hello/:name"> // matches /hello/michael and /hello/ryan
22
<Route path="/hello(/:name)"> // matches /hello, /hello/michael, and /hello/ryan
23
-<Route path="/files/*.*"> // matches /files/hello.jpg and /files/path/to/hello.jpg
+<Route path="/files/*.*"> // matches /files/hello.jpg and /files/hello.html
24
<Route path="/**/*.jpg"> // matches /files/hello.jpg and /files/path/to/file.jpg
25
```
26
0 commit comments