aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFurkan Ayhan <furkanayhn@gmail.com>2018-03-04 18:23:07 +0800
committerGitHub <noreply@github.com>2018-03-04 18:23:07 +0800
commitc2730a48931aca8acb5d89ad9e946f16eb9463c3 (patch)
treea0e5e756a303b8a48f0ce4eaed17317087fbea23
parent7e2f3d3e0727cf6ef8779abd3cf6e00e5332f1ef (diff)
downloaddexon-solidity-c2730a48931aca8acb5d89ad9e946f16eb9463c3.tar.gz
dexon-solidity-c2730a48931aca8acb5d89ad9e946f16eb9463c3.tar.zst
dexon-solidity-c2730a48931aca8acb5d89ad9e946f16eb9463c3.zip
Correct warning message in Pure Functions doc
wrong commit that caused this: (https://github.com/ethereum/solidity/commit/64eaff64200d166bdd48f81bceefec9bc83db72f#diff-754689a291c0a19b500c31eb6c1d30c7R506)
-rw-r--r--docs/contracts.rst2
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