From 513c9c75a105e435d5788f3254d8488e5b3c169c Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 9 Aug 2011 11:16:44 -0500 Subject: [PATCH] Remove "do" from filter example. --- application/filters.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/filters.php b/application/filters.php index 2eb68c80..09cf9506 100644 --- a/application/filters.php +++ b/application/filters.php @@ -29,7 +29,7 @@ return array( | | Next, attach the filter to a route: | - | 'GET /' => array('before' => 'simple_filter', 'do' => function() + | 'GET /' => array('before' => 'simple_filter', function() | { | return 'Hello World!'; | })