From 0bea2fb0b6eaf04133b75032ffb84f70c0fcd41d Mon Sep 17 00:00:00 2001 From: anaxamaxan Date: Mon, 19 Nov 2012 17:00:31 -0800 Subject: [PATCH] Fix typo and update 2nd example comment for filter --- application/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/routes.php b/application/routes.php index 2135969b..2892da90 100644 --- a/application/routes.php +++ b/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!'; | }));