diff options
author | Chris Ward <chris.ward@ethereum.org> | 2019-01-03 00:25:16 +0800 |
---|---|---|
committer | Chris Ward <chris.ward@ethereum.org> | 2019-01-07 21:20:10 +0800 |
commit | cefc6c433e1722364a1461a144b077e57e2ecafe (patch) | |
tree | ccb81630ace0da0ba436d6084d259f188ad90bf3 /docs/introduction-to-smart-contracts.rst | |
parent | aca9e581454585fab494a87febb7da3278e3aa7b (diff) | |
download | dexon-solidity-cefc6c433e1722364a1461a144b077e57e2ecafe.tar.gz dexon-solidity-cefc6c433e1722364a1461a144b077e57e2ecafe.tar.zst dexon-solidity-cefc6c433e1722364a1461a144b077e57e2ecafe.zip |
Update non-existant pragma 0.4.99 to 0.5.0
Use correct syntax for pragma
Change pragma syntax
One more change to pragma syntax
Diffstat (limited to 'docs/introduction-to-smart-contracts.rst')
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index 7daae06a..0cce690b 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -81,7 +81,7 @@ registering with username and password — all you need is an Ethereum keypair. :: - pragma solidity >0.4.99 <0.6.0; + pragma solidity ^0.5.0; contract Coin { // The keyword "public" makes those variables |