Update documentation and Changelog.

This commit is contained in:
Daniel Kirchner
2018-07-04 10:14:58 +02:00
parent 0a738b4ac4
commit d9a8f2aace
3 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -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.