fixed example in doc (closes #484)
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 25 Oct 2011 15:37:58 +0000 (17:37 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 25 Oct 2011 15:37:58 +0000 (17:37 +0200)
doc/extensions.rst

index 7e9941f..1f61a3e 100644 (file)
@@ -131,8 +131,8 @@ Global variables and functions can be registered in an extensions via the
         public function getGlobals()
         {
             return array(
-                'text' => new Text(),
-                'lipsum' => new Twig_Function(new Text(), 'getLipsum'),
+                'text'   => new Text(),
+                'lipsum' => new Twig_Function_Function('generate_lipsum'),
             );
         }