diff options
author | chriseth <chris@ethereum.org> | 2018-03-05 17:25:21 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-05 17:25:21 +0800 |
commit | e3c2ab39a125e68aea07ba9c8cacb0a55293bf0d (patch) | |
tree | a0e5e756a303b8a48f0ce4eaed17317087fbea23 | |
parent | 7e2f3d3e0727cf6ef8779abd3cf6e00e5332f1ef (diff) | |
parent | c2730a48931aca8acb5d89ad9e946f16eb9463c3 (diff) | |
download | dexon-solidity-e3c2ab39a125e68aea07ba9c8cacb0a55293bf0d.tar dexon-solidity-e3c2ab39a125e68aea07ba9c8cacb0a55293bf0d.tar.gz dexon-solidity-e3c2ab39a125e68aea07ba9c8cacb0a55293bf0d.tar.bz2 dexon-solidity-e3c2ab39a125e68aea07ba9c8cacb0a55293bf0d.tar.lz dexon-solidity-e3c2ab39a125e68aea07ba9c8cacb0a55293bf0d.tar.xz dexon-solidity-e3c2ab39a125e68aea07ba9c8cacb0a55293bf0d.tar.zst dexon-solidity-e3c2ab39a125e68aea07ba9c8cacb0a55293bf0d.zip |
Merge pull request #3641 from furkanayhan/patch-1
Correct warning message in Pure Functions doc
-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 3df722db..12b785d5 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -503,7 +503,7 @@ In addition to the list of state modifying statements explained above, the follo } .. warning:: - Before version 0.4.17 the compiler didn't enforce that ``view`` is not reading the state. + Before version 0.4.17 the compiler didn't enforce that ``pure`` is not reading the state. .. index:: ! fallback function, function;fallback |