fixed a typo in the docs (closes #1137)
authorFabien Potencier <fabien.potencier@gmail.com>
Sat, 13 Jul 2013 19:15:14 +0000 (21:15 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Sat, 13 Jul 2013 19:15:14 +0000 (21:15 +0200)
doc/advanced.rst
doc/advanced_legacy.rst

index 804f50c..e1945eb 100644 (file)
@@ -241,7 +241,7 @@ The following filters will be matched by the above defined dynamic filter:
 
 A dynamic filter can define more than one dynamic parts::
 
-    $filter = new Twig_SimpleFilter('*_path', function ($name, $suffix, $arguments) {
+    $filter = new Twig_SimpleFilter('*_path_*', function ($name, $suffix, $arguments) {
         // ...
     });
 
index 8dbc525..3d34f93 100644 (file)
@@ -266,7 +266,7 @@ Dynamic Filters
 A filter name containing the special ``*`` character is a dynamic filter as
 the ``*`` can be any string::
 
-    $twig->addFilter('*_path', new Twig_Filter_Function('twig_path'));
+    $twig->addFilter('*_path_*', new Twig_Filter_Function('twig_path'));
 
     function twig_path($name, $arguments)
     {