Fix replace filter name in documentation
authorornicar <thibault.duplessis@gmail.com>
Sun, 7 Nov 2010 19:26:32 +0000 (20:26 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Sun, 7 Nov 2010 19:40:49 +0000 (20:40 +0100)
doc/02-Twig-for-Template-Designers.markdown

index f326697..8ca677e 100644 (file)
@@ -1058,7 +1058,7 @@ The `format` filter formats a given string by replacing the placeholders
 
     [twig]
     {# string is a format string like: I like %this% and %that%. #}
-    {{ string|format(['%this%': foo, '%that%': "bar"]) }}
+    {{ string|replace(['%this%': foo, '%that%': "bar"]) }}
     {# returns I like foo and bar. (if the foo parameter equals to the foo string) #}
 
 ### `cycle`