Skip to content

Commit

Permalink
Fix re.exec('/test/route') result (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
xc1427 committed Feb 11, 2022
1 parent 79a5dcf commit 32a14b0
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 @@ -82,7 +82,7 @@ re.exec('/test')
//=> ['/test', 'test', undefined]

re.exec('/test/route')
//=> ['/test', 'test', 'route']
//=> ['/test/route', 'test', 'route']
```

##### Zero or more
Expand Down

0 comments on commit 32a14b0

Please sign in to comment.