Skip to content

Commit

Permalink
Merge pull request #132 from 4Catalyzer/fix-README-regex
Browse files Browse the repository at this point in the history
Fix regex example in README [ci skip]
  • Loading branch information
taion authored Oct 6, 2017
2 parents 9d4f4be + af2c2db commit 52917b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ Specify a `path` pattern to control the paths for which a route is active. These
- Matches `/path/subpath`
- `/path/:param`
- Matches `/path/foo` with `params` of `{ param: 'foo' }`
- `/path/:(\d+)regexParam`
- `/path/:regexParam(\\d+)`
- Matches `/path/123` with `params` of `{ regexParam: '123' }`
- Does not match `/path/foo`
- `/path/:optionalParam?`
Expand Down

0 comments on commit 52917b8

Please sign in to comment.