diff options
author | Oleksii Matiiasevych <lastperson@gmail.com> | 2018-03-06 15:19:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-06 15:19:59 +0800 |
commit | 5d486b741fc5352bb7d02a812fb7566f1749f9a7 (patch) | |
tree | 62a11ba19bf7fd35074431ff768d903018064885 /docs/contracts.rst | |
parent | 41ea502f0e4c67339c4954ba0008a945ba110e87 (diff) | |
download | dexon-solidity-5d486b741fc5352bb7d02a812fb7566f1749f9a7.tar.gz dexon-solidity-5d486b741fc5352bb7d02a812fb7566f1749f9a7.tar.zst dexon-solidity-5d486b741fc5352bb7d02a812fb7566f1749f9a7.zip |
Revert warning update about `view` modifier
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 e61667dd..67d4a249 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -473,7 +473,7 @@ The following statements are considered modifying the state: Getter methods are marked ``view``. .. warning:: - Before version 0.4.17 the compiler didn't enforce that ``view`` is not modifying the state. + The compiler does not enforce yet that a ``view`` method is not modifying state. It raises a warning though. .. index:: ! pure function, function;pure |