Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud Berthomier committed Mar 24, 2009
1 parent 9701442 commit 31be754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/public/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class App extends Toupti
':baz' => 'plop|foo|index'),
'foo4/:bar/:baz' => array('action' => 'foo'), // You can match several named params with custom regexps
'say/:what/to/:who' => 'dialogue', // matches hello/\w+/to/\w+
'say/*/to/*' => 'dialogue', // matches hello/.*/to/.* and store into params['slpat'] array
'say/*/to/*' => 'dialogue', // matches hello/.*/to/.* and store into params['splat'] array
'say/:what/to/*' => 'dialogue', // combining splat and named params works too...
':action' => ':action',
);
Expand Down

0 comments on commit 31be754

Please sign in to comment.