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

View File

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