added missing operators in the precedence docs (closes #1057)
authorFabien Potencier <fabien.potencier@gmail.com>
Wed, 1 May 2013 06:53:54 +0000 (08:53 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Wed, 1 May 2013 06:53:54 +0000 (08:53 +0200)
doc/templates.rst

index f87b036..b6857a5 100644 (file)
@@ -557,7 +557,8 @@ even if you're not working with PHP you should feel comfortable with it.
     The operator precedence is as follows, with the lowest-precedence
     operators listed first: ``b-and``, ``b-xor``, ``b-or``, ``or``, ``and``,
     ``==``, ``!=``, ``<``, ``>``, ``>=``, ``<=``, ``in``, ``..``, ``+``,
-    ``-``, ``~``, ``*``, ``/``, ``//``, ``%``, ``is``, and ``**``.
+    ``-``, ``~``, ``*``, ``/``, ``//``, ``%``, ``is``, ``**``, ``|``, ``[]``,
+    and ``.``.
 
 Literals
 ~~~~~~~~