diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-07-27 02:01:01 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-07-27 02:01:01 +0800 |
commit | ca5e6a6bd4734483c2ead97562286f9c32033bc0 (patch) | |
tree | 26910d3a52b22821bec67eb2812c288de2a83c6c /docs/miscellaneous.rst | |
parent | 1ec74f8cc4b952331b3003e2326eb90aa7fc2e55 (diff) | |
download | dexon-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
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r-- | docs/miscellaneous.rst | 1 |
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 | ``=``, ``|=``, ``^=``, ``&=``, ``<<=``, | +| | | ``>>=``, ``>>>=``, ``+=``, ``-=``, ``*=``, | | | | ``/=``, ``%=`` | +------------+-------------------------------------+--------------------------------------------+ |