diff options
author | Rafiudeen Chozhan Kumarasamy <18123554+rafialhamd@users.noreply.github.com> | 2018-04-26 01:32:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-26 01:32:50 +0800 |
commit | 890a0a07a6f92ab4c86388b0ab3a98f110e07b15 (patch) | |
tree | 3e88ed4f393d1677e73d5b7b295b8f647c471176 | |
parent | 258ae8927e21cddc18935e26b4184a833c85bda8 (diff) | |
download | dexon-solidity-890a0a07a6f92ab4c86388b0ab3a98f110e07b15.tar dexon-solidity-890a0a07a6f92ab4c86388b0ab3a98f110e07b15.tar.gz dexon-solidity-890a0a07a6f92ab4c86388b0ab3a98f110e07b15.tar.bz2 dexon-solidity-890a0a07a6f92ab4c86388b0ab3a98f110e07b15.tar.lz dexon-solidity-890a0a07a6f92ab4c86388b0ab3a98f110e07b15.tar.xz dexon-solidity-890a0a07a6f92ab4c86388b0ab3a98f110e07b15.tar.zst dexon-solidity-890a0a07a6f92ab4c86388b0ab3a98f110e07b15.zip |
Update Enum Type definition.
It's better to say that, Enums contain finite set of 'constant values', instead of finite set of 'values'.
-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). :: |