fixed doc
authorFabien Potencier <fabien.potencier@gmail.com>
Thu, 25 Mar 2010 11:03:27 +0000 (12:03 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Thu, 25 Mar 2010 11:03:27 +0000 (12:03 +0100)
doc/02-Twig-for-Template-Designers.markdown
doc/06-Recipes.markdown

index 3a907bc..00becdc 100644 (file)
@@ -592,7 +592,8 @@ the `set` tag and can have multiple targets:
 
     {% set foo, bar as 'foo', 'bar' %}
 
-The `set` tag can also be used to 'capture' chunks of HTML:
+The `set` tag can also be used to 'capture' chunks of HTML (new in Twig
+0.9.6):
 
     [twig]
     {% set foo %}
index 20ec0c9..c1207db 100644 (file)
@@ -215,6 +215,8 @@ accessible via the `loop.parent.loop.index` variable.
 Passing a Macro as an Argument
 ------------------------------
 
+(new in Twig 0.9.6)
+
 By default, a macro directly outputs its content to the screen. If you want to
 pass the content of a macro as an argument to a method or to another macro,
 you can use the `set` tag: