Skip to content

Commit 32a14b0

Browse files
authored
Fix re.exec('/test/route') result (#267)
1 parent 79a5dcf commit 32a14b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ re.exec('/test')
8282
//=> ['/test', 'test', undefined]
8383

8484
re.exec('/test/route')
85-
//=> ['/test', 'test', 'route']
85+
//=> ['/test/route', 'test', 'route']
8686
```
8787

8888
##### Zero or more

0 commit comments

Comments
 (0)