diff options
author | chriseth <chris@ethereum.org> | 2018-04-26 16:20:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-26 16:20:09 +0800 |
commit | ef2111a2fe89fef06a4d8e750d6a652b16358f4b (patch) | |
tree | d15705b46a1d858ee71e94cbb43b01af46c9e530 | |
parent | 81cca26f79bfccb4dfdf5111aea2eef184036230 (diff) | |
parent | 890a0a07a6f92ab4c86388b0ab3a98f110e07b15 (diff) | |
download | dexon-solidity-ef2111a2fe89fef06a4d8e750d6a652b16358f4b.tar.gz dexon-solidity-ef2111a2fe89fef06a4d8e750d6a652b16358f4b.tar.zst dexon-solidity-ef2111a2fe89fef06a4d8e750d6a652b16358f4b.zip |
Merge pull request #3994 from rafialhamd/rafialhamd-documentation
Update Enum Type definition.
-rw-r--r-- | docs/structure-of-a-contract.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/structure-of-a-contract.rst b/docs/structure-of-a-contract.rst index d57f1703..7a6317eb 100644 --- a/docs/structure-of-a-contract.rst +++ b/docs/structure-of-a-contract.rst @@ -129,7 +129,7 @@ Structs are custom defined types that can group several variables (see Enum Types ========== -Enums can be used to create custom types with a finite set of values (see +Enums can be used to create custom types with a finite set of 'constant values' (see :ref:`enums` in types section). :: |