diff options
author | chriseth <chris@ethereum.org> | 2018-10-09 05:01:52 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-10-09 09:15:53 +0800 |
commit | 0712da64212d6b7fa62359aded4f9bbe1a069188 (patch) | |
tree | 154c250ea0cca7b86af3f69ff9574003d2d1ab10 /docs | |
parent | 6a0b7759ba039e8a365566b722c462df62d732ce (diff) | |
download | dexon-solidity-0712da64212d6b7fa62359aded4f9bbe1a069188.tar.gz dexon-solidity-0712da64212d6b7fa62359aded4f9bbe1a069188.tar.zst dexon-solidity-0712da64212d6b7fa62359aded4f9bbe1a069188.zip |
Fix version pragma in documentation.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/control-structures.rst | 2 | ||||
-rw-r--r-- | docs/frequently-asked-questions.rst | 2 | ||||
-rw-r--r-- | docs/solidity-by-example.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 80311a63..353bb61d 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -279,7 +279,7 @@ groupings of expressions. :: - pragma solidity >0.4.23 <0.5.0; + pragma solidity >0.4.23 <0.6.0; contract C { uint[] data; diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index a474f905..0f8b34f8 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -173,7 +173,7 @@ situation. If you do not want to throw, you can return a pair:: - pragma solidity >0.4.23 <0.5.0; + pragma solidity >0.4.23 <0.6.0; contract C { uint[] counters; diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index 1bbd42f8..8f58f339 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -389,7 +389,7 @@ high or low invalid bids. :: - pragma solidity >0.4.23 <0.5.0; + pragma solidity >0.4.23 <0.6.0; contract BlindAuction { struct Bid { |