diff options
author | chriseth <chris@ethereum.org> | 2018-08-08 18:56:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 18:56:07 +0800 |
commit | 42447a14ebc146dd3ff3034360e85bebe3f34ce6 (patch) | |
tree | df58ede328596328099c697464b807c21fe7a2de | |
parent | 154a7706ba2a4fac90eddd12f5bdf57eae1ada42 (diff) | |
parent | 047561f4ec2a7c533cedefbda89933526c9a2a59 (diff) | |
download | dexon-solidity-42447a14ebc146dd3ff3034360e85bebe3f34ce6.tar dexon-solidity-42447a14ebc146dd3ff3034360e85bebe3f34ce6.tar.gz dexon-solidity-42447a14ebc146dd3ff3034360e85bebe3f34ce6.tar.bz2 dexon-solidity-42447a14ebc146dd3ff3034360e85bebe3f34ce6.tar.lz dexon-solidity-42447a14ebc146dd3ff3034360e85bebe3f34ce6.tar.xz dexon-solidity-42447a14ebc146dd3ff3034360e85bebe3f34ce6.tar.zst dexon-solidity-42447a14ebc146dd3ff3034360e85bebe3f34ce6.zip |
Merge pull request #4747 from ethereum/enum-docs
Update enum with lifting the restriction for interfaces
-rw-r--r-- | docs/contracts.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst index 2149167b..561d2f97 100644 --- a/docs/contracts.rst +++ b/docs/contracts.rst @@ -1158,7 +1158,6 @@ Interfaces are similar to abstract contracts, but they cannot have any functions - Cannot define constructor. - Cannot define variables. - Cannot define structs. -- Cannot define enums. Some of these restrictions might be lifted in the future. |