Remove "do" from filter example.

This commit is contained in:
Taylor Otwell 2011-08-09 11:16:44 -05:00
parent 8781e52ab5
commit 513c9c75a1
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
|
| Next, attach the filter to a route:
|
| 'GET /' => array('before' => 'simple_filter', 'do' => function()
| 'GET /' => array('before' => 'simple_filter', function()
| {
| return 'Hello World!';
| })