Merge pull request #1458 from anaxamaxan/patch-2

Fix typo and update 2nd example comment for filter
This commit is contained in:
Taylor Otwell 2013-01-05 12:08:49 -08:00
commit e5341ef59e
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!';
| }));