diff --git a/docs/guides/basics/RouteMatching.md b/docs/guides/basics/RouteMatching.md index 2390635539..da865ef404 100644 --- a/docs/guides/basics/RouteMatching.md +++ b/docs/guides/basics/RouteMatching.md @@ -20,6 +20,7 @@ A route path is [a string pattern](/docs/Glossary.md#routepattern) that is used // matches /hello/michael and /hello/ryan // matches /hello, /hello/michael, and /hello/ryan // matches /files/hello.jpg and /files/path/to/hello.jpg + // matches /[anything]/home like /github/home ``` If a route uses a relative `path`, it builds upon the accumulated `path` of its ancestors. Nested routes may opt-out of this behavior by [using an absolute `path`](RouteConfiguration.md#decoupling-the-ui-from-the-url).