diff options
author | chriseth <chris@ethereum.org> | 2018-10-04 19:55:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 19:55:45 +0800 |
commit | 68dfe8b6407f8cc991708ca78b84b0f564c7a595 (patch) | |
tree | 69df9984162441a2ac4b1b522e9cb0a54522e994 /docs | |
parent | 1a36de62b9a8f69d20f1a2dd3a3881961bba7beb (diff) | |
parent | 24d1507537ef54848387331e38fcb60581028737 (diff) | |
download | dexon-solidity-68dfe8b6407f8cc991708ca78b84b0f564c7a595.tar.gz dexon-solidity-68dfe8b6407f8cc991708ca78b84b0f564c7a595.tar.zst dexon-solidity-68dfe8b6407f8cc991708ca78b84b0f564c7a595.zip |
Merge pull request #5126 from ethereum/chriseth-patch-1
[DOCS] Remove duplicate statement about pure enforcement.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contracts.rst | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 93f54e4a..be89727d 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -573,9 +573,6 @@ In addition to the list of state modifying statements explained above, the follo not do state-changing operations, but it cannot check that the contract that will be called at runtime is actually of that type. -.. note:: - Before version 0.5.0 the compiler did not enforce that ``pure`` is not reading the state. - .. index:: ! fallback function, function;fallback .. _fallback-function: |