added a caution about nested hashes in the docs
authorFabien Potencier <fabien.potencier@gmail.com>
Thu, 30 Dec 2010 10:40:02 +0000 (11:40 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Thu, 30 Dec 2010 10:40:02 +0000 (11:40 +0100)
doc/templates.rst

index 589e799..b3ae80c 100644 (file)
@@ -969,6 +969,13 @@ Arrays and hashes can be nested:
 
     {% set foo = [1, {"foo": "bar"}] %}
 
+.. caution::
+
+    When defining nested hashes, be careful to put at least one whitespace
+    between the two closing curly braces like in this example: ``{ 'foo: {
+    'bar': 'foobar' } }``. If not, Twig will interpret ``}}`` as the end of
+    the expression.
+
 Math
 ~~~~