added missing operators in the precedence docs (closes #1057)

This commit is contained in:
Fabien Potencier
2013-05-01 08:53:54 +02:00
parent eaf5a2db54
commit 04bc0698cc
+2 -1
View 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
~~~~~~~~