From 8bf96b1c43febe3c082a9d60af6ebdc44d4eca68 Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Wed, 27 Jul 2016 10:30:20 -0400 Subject: Remove >>> and >>>= operators --- docs/miscellaneous.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs') 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 | `` ? : `` | +------------+-------------------------------------+--------------------------------------------+ | *15* | Assignment operators | ``=``, ``|=``, ``^=``, ``&=``, ``<<=``, | -| | | ``>>=``, ``>>>=``, ``+=``, ``-=``, ``*=``, | -| | | ``/=``, ``%=`` | +| | | ``>>=``, ``+=``, ``-=``, ``*=``, ``/=``, | +| | | ``%=`` | +------------+-------------------------------------+--------------------------------------------+ | *16* | Comma operator | ``,`` | +------------+-------------------------------------+--------------------------------------------+ -- cgit