aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-07-27 02:01:01 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-07-27 02:01:01 +0800
commitca5e6a6bd4734483c2ead97562286f9c32033bc0 (patch)
tree26910d3a52b22821bec67eb2812c288de2a83c6c
parent1ec74f8cc4b952331b3003e2326eb90aa7fc2e55 (diff)
downloaddexon-solidity-ca5e6a6bd4734483c2ead97562286f9c32033bc0.tar
dexon-solidity-ca5e6a6bd4734483c2ead97562286f9c32033bc0.tar.gz
dexon-solidity-ca5e6a6bd4734483c2ead97562286f9c32033bc0.tar.bz2
dexon-solidity-ca5e6a6bd4734483c2ead97562286f9c32033bc0.tar.lz
dexon-solidity-ca5e6a6bd4734483c2ead97562286f9c32033bc0.tar.xz
dexon-solidity-ca5e6a6bd4734483c2ead97562286f9c32033bc0.tar.zst
dexon-solidity-ca5e6a6bd4734483c2ead97562286f9c32033bc0.zip
Fix assignment operators
-rw-r--r--docs/miscellaneous.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst
index 46867ab5..dd4bb9b0 100644
--- a/docs/miscellaneous.rst
+++ b/docs/miscellaneous.rst
@@ -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 | ``=``, ``|=``, ``^=``, ``&=``, ``<<=``, |
+| | | ``>>=``, ``>>>=``, ``+=``, ``-=``, ``*=``, |
| | | ``/=``, ``%=`` |
+------------+-------------------------------------+--------------------------------------------+