Browse Source

Merge pull request #1458 from anaxamaxan/patch-2

Fix typo and update 2nd example comment for filter
Taylor Otwell 12 years ago
parent
commit
e5341ef59e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/routes.php

+ 1 - 1
application/routes.php

@@ -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!';
 |		}));