diff options
author | chriseth <chris@ethereum.org> | 2018-12-19 19:31:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-19 19:31:29 +0800 |
commit | 8875092073a30c94659f8a373658ca8286803054 (patch) | |
tree | 818c2bd0a5192a5025c09476f0c071568937f13a | |
parent | 678a95f6e3bbd9f1c4914151c0178847348de970 (diff) | |
parent | af3e6db038c0ef2ce847537129e19deaec3c906a (diff) | |
download | dexon-solidity-8875092073a30c94659f8a373658ca8286803054.tar.gz dexon-solidity-8875092073a30c94659f8a373658ca8286803054.tar.zst dexon-solidity-8875092073a30c94659f8a373658ca8286803054.zip |
Merge pull request #5683 from Zacharius/5673-doc_enum_fix
5673 doc enum fix
-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 } |