Fix typo and update 2nd example comment for filter

This commit is contained in:
anaxamaxan 2012-11-19 17:00:31 -08:00
parent d2fefa65aa
commit 0bea2fb0b6
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@
|
| Next, attach the filter to a route:
|
| Router::register('GET /', array('before' => 'filter', function()
| Route::get('/', array('before' => 'filter', function()
| {
| return 'Hello World!';
| }));