diff options
author | chriseth <chris@ethereum.org> | 2016-08-12 21:09:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-12 21:09:55 +0800 |
commit | 0d894a6832d21ba68f0f3d2fea66c8f4efc45815 (patch) | |
tree | 79d06aa3333b9921fbb99e1cecd56dd3ef595df7 /docs | |
parent | 08248ff4edca83c2edc57a4f081002cd2bb393a4 (diff) | |
parent | 92a711c4fb0f84186aeab955150a733bb1293aae (diff) | |
download | dexon-solidity-0d894a6832d21ba68f0f3d2fea66c8f4efc45815.tar.gz dexon-solidity-0d894a6832d21ba68f0f3d2fea66c8f4efc45815.tar.zst dexon-solidity-0d894a6832d21ba68f0f3d2fea66c8f4efc45815.zip |
Merge pull request #844 from Denton-L/remove-after
BREAKING: Remove after
Diffstat (limited to 'docs')
-rw-r--r-- | docs/miscellaneous.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index 304fce14..ca0cf593 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -228,7 +228,7 @@ The following is the order of precedence for operators, listed in order of evalu + +-------------------------------------+--------------------------------------------+ | | Unary plus and minus | ``+``, ``-`` | + +-------------------------------------+--------------------------------------------+ -| | Unary operations | ``after``, ``delete`` | +| | Unary operations | ``delete`` | + +-------------------------------------+--------------------------------------------+ | | Logical NOT | ``!`` | + +-------------------------------------+--------------------------------------------+ @@ -321,4 +321,3 @@ Modifiers - ``constant`` for functions: Disallows modification of state - this is not enforced yet. - ``anonymous`` for events: Does not store event signature as topic. - ``indexed`` for event parameters: Stores the parameter as topic. - |