aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-07-27 22:30:20 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-07-27 22:30:20 +0800
commit8bf96b1c43febe3c082a9d60af6ebdc44d4eca68 (patch)
tree06564924be93288b5aee0d58aabcffa70ad1c006 /docs
parent71438157ce8455cbc14939b95e1a28236f10ed46 (diff)
downloaddexon-solidity-8bf96b1c43febe3c082a9d60af6ebdc44d4eca68.tar.gz
dexon-solidity-8bf96b1c43febe3c082a9d60af6ebdc44d4eca68.tar.zst
dexon-solidity-8bf96b1c43febe3c082a9d60af6ebdc44d4eca68.zip
Remove >>> and >>>= operators
Diffstat (limited to 'docs')
-rw-r--r--docs/miscellaneous.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst
index 61dc9a16..e56b1d24 100644
--- a/docs/miscellaneous.rst
+++ b/docs/miscellaneous.rst
@@ -185,7 +185,7 @@ The following is the order of precedence for operators, listed in order of evalu
+------------+-------------------------------------+--------------------------------------------+
| *5* | Addition and subtraction | ``+``, ``-`` |
+------------+-------------------------------------+--------------------------------------------+
-| *6* | Bitwise shift operators | ``<<``, ``>>``, ``>>>`` |
+| *6* | Bitwise shift operators | ``<<``, ``>>`` |
+------------+-------------------------------------+--------------------------------------------+
| *7* | Bitwise AND | ``&`` |
+------------+-------------------------------------+--------------------------------------------+
@@ -204,8 +204,8 @@ 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 | ``=``, ``|=``, ``^=``, ``&=``, ``<<=``, |
-| | | ``>>=``, ``>>>=``, ``+=``, ``-=``, ``*=``, |
-| | | ``/=``, ``%=`` |
+| | | ``>>=``, ``+=``, ``-=``, ``*=``, ``/=``, |
+| | | ``%=`` |
+------------+-------------------------------------+--------------------------------------------+
| *16* | Comma operator | ``,`` |
+------------+-------------------------------------+--------------------------------------------+