diff options
author | Daniel Kirchner <daniel@ekpyron.org> | 2018-07-03 17:02:20 +0800 |
---|---|---|
committer | Daniel Kirchner <daniel@ekpyron.org> | 2018-07-04 16:14:58 +0800 |
commit | d9a8f2aaceb077d5a3ef0bb2971d747b894aee7f (patch) | |
tree | d70a53b9bd0f230587c87adbd517625b094c76f6 /docs/miscellaneous.rst | |
parent | 0a738b4ac4b4b79654531061f1d11885655e86e8 (diff) | |
download | dexon-solidity-d9a8f2aaceb077d5a3ef0bb2971d747b894aee7f.tar.gz dexon-solidity-d9a8f2aaceb077d5a3ef0bb2971d747b894aee7f.tar.zst dexon-solidity-d9a8f2aaceb077d5a3ef0bb2971d747b894aee7f.zip |
Update documentation and Changelog.
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r-- | docs/miscellaneous.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index c19c8c59..1d5add9a 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -397,8 +397,8 @@ Function Visibility Specifiers Modifiers ========= -- ``pure`` for functions: Disallows modification or access of state - this is not enforced yet. -- ``view`` for functions: Disallows modification of state - this is not enforced yet. +- ``pure`` for functions: Disallows modification or access of state. +- ``view`` for functions: Disallows modification of state. - ``payable`` for functions: Allows them to receive Ether together with a call. - ``constant`` for state variables: Disallows assignment (except initialisation), does not occupy storage slot. - ``anonymous`` for events: Does not store event signature as topic. |