diff options
author | chriseth <chris@ethereum.org> | 2018-07-04 02:17:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-04 02:17:01 +0800 |
commit | 58aeffb45b206e8b55c3ae1cbc1f5a86157482fb (patch) | |
tree | 6402c116f6795df80955c21450c0a1e3a3aa5ead /docs/contracts.rst | |
parent | 96a04be6842a15bbad22fb67a6aab9a9e9130636 (diff) | |
parent | a7fc8a996b666ecd0c90c8addb422ef640f8887c (diff) | |
download | dexon-solidity-58aeffb45b206e8b55c3ae1cbc1f5a86157482fb.tar dexon-solidity-58aeffb45b206e8b55c3ae1cbc1f5a86157482fb.tar.gz dexon-solidity-58aeffb45b206e8b55c3ae1cbc1f5a86157482fb.tar.bz2 dexon-solidity-58aeffb45b206e8b55c3ae1cbc1f5a86157482fb.tar.lz dexon-solidity-58aeffb45b206e8b55c3ae1cbc1f5a86157482fb.tar.xz dexon-solidity-58aeffb45b206e8b55c3ae1cbc1f5a86157482fb.tar.zst dexon-solidity-58aeffb45b206e8b55c3ae1cbc1f5a86157482fb.zip |
Merge pull request #4413 from ethereum/dropConstantKeywordOnly
Drop constant keyword only
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 56d651ee..41240a9c 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -473,7 +473,7 @@ The following statements are considered modifying the state: } .. note:: - ``constant`` on functions is an alias to ``view``, but this is deprecated and will be dropped in version 0.5.0. + ``constant`` on functions used to be an alias to ``view``, but this was dropped in version 0.5.0. .. note:: Getter methods are marked ``view``. |