diff options
author | Zacharius <zach@zfadd.is> | 2018-12-19 02:08:55 +0800 |
---|---|---|
committer | Christian Parpart <christian@ethereum.org> | 2018-12-19 19:22:49 +0800 |
commit | af3e6db038c0ef2ce847537129e19deaec3c906a (patch) | |
tree | 818c2bd0a5192a5025c09476f0c071568937f13a /docs/contracts.rst | |
parent | 678a95f6e3bbd9f1c4914151c0178847348de970 (diff) | |
download | dexon-solidity-af3e6db038c0ef2ce847537129e19deaec3c906a.tar.gz dexon-solidity-af3e6db038c0ef2ce847537129e19deaec3c906a.tar.zst dexon-solidity-af3e6db038c0ef2ce847537129e19deaec3c906a.zip |
changed interface code example to illustrate working solidity version
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r-- | docs/contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 98419430..682cb378 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -1408,7 +1408,7 @@ Interfaces are denoted by their own keyword: :: - pragma solidity >=0.4.11 <0.6.0; + pragma solidity >=0.5.0 <0.6.0; interface Token { enum TokenType { Fungible, NonFungible } |