Remove "do" from filter example.

This commit is contained in:
Taylor Otwell
2011-08-09 11:16:44 -05:00
parent 8781e52ab5
commit 513c9c75a1

View File

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