Browse Source

Remove "do" from filter example.

Taylor Otwell 13 years ago
parent
commit
513c9c75a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      application/filters.php

+ 1 - 1
application/filters.php

@@ -29,7 +29,7 @@ return array(
 	|
 	|
 	| Next, attach the filter to a route:
 	| Next, attach the filter to a route:
 	|
 	|
-	|		'GET /' => array('before' => 'simple_filter', 'do' => function()
+	|		'GET /' => array('before' => 'simple_filter', function()
 	|		{
 	|		{
 	|			return 'Hello World!';
 	|			return 'Hello World!';
 	|		})
 	|		})