aboutsummaryrefslogtreecommitdiffstats
path: root/docs/miscellaneous.rst
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-07-03 17:02:20 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-07-04 16:14:58 +0800
commitd9a8f2aaceb077d5a3ef0bb2971d747b894aee7f (patch)
treed70a53b9bd0f230587c87adbd517625b094c76f6 /docs/miscellaneous.rst
parent0a738b4ac4b4b79654531061f1d11885655e86e8 (diff)
downloaddexon-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.rst4
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.