Skip to content

Commit

Permalink
Fixed exemplary array structure of parsed route in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Trainmaster committed Mar 23, 2016
1 parent 8164b4a commit 8550258
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,13 @@ each route info is again an array of it's parts. The structure is best understoo
[
[
'/user/',
['name', '[^/]+'],
['id', '\d+'],
],
[
'/user/',
['name', '[^/]+'],
['id', '\d+'],
'/',
['id', '[0-9]+'],
['name', '[^/]+'],
],
]

Expand Down

0 comments on commit 8550258

Please sign in to comment.