Fix assignment operators

This commit is contained in:
Denton Liu 2016-07-26 14:01:01 -04:00
parent 1ec74f8cc4
commit ca5e6a6bd4

View File

@ -204,6 +204,7 @@ The following is the order of precedence for operators, listed in order of evalu
| *14* | Ternary operator | ``<conditional> ? <if-true> : <if-false>`` |
+------------+-------------------------------------+--------------------------------------------+
| *15* | Assignment operators | ``=``, ``|=``, ``^=``, ``&=``, ``<<=``, |
| | | ``>>=``, ``>>>=``, ``+=``, ``-=``, ``*=``, |
| | | ``/=``, ``%=`` |
+------------+-------------------------------------+--------------------------------------------+