diff options
-rw-r--r-- | docs/contracts.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 50e7f3d1..973386d5 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -471,7 +471,7 @@ Functions can be declared ``view`` in which case they promise not to modify the :: - pragma solidity ^0.4.0; + pragma solidity ^0.4.16; contract C { function f(uint a, uint b) view returns (uint) { @@ -498,7 +498,7 @@ Functions can be declared ``pure`` in which case they promise not to read from o :: - pragma solidity ^0.4.0; + pragma solidity ^0.4.16; contract C { function f(uint a, uint b) pure returns (uint) { |