diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-11 03:09:28 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-11 22:15:59 +0800 |
commit | 1ff7ba0b061da29b23cc6418424bf2c2bc66be11 (patch) | |
tree | 2ba812787edd2339fcf05016b8a7305a61ac142b /docs | |
parent | faf0b3f66905ccf24b64515d2d9ebdb10e48a89d (diff) | |
download | dexon-solidity-1ff7ba0b061da29b23cc6418424bf2c2bc66be11.tar.gz dexon-solidity-1ff7ba0b061da29b23cc6418424bf2c2bc66be11.tar.zst dexon-solidity-1ff7ba0b061da29b23cc6418424bf2c2bc66be11.zip |
Remove after keyword from documentation
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. - |