aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorRafiudeen Chozhan Kumarasamy <18123554+rafialhamd@users.noreply.github.com>2018-04-26 01:32:50 +0800
committerGitHub <noreply@github.com>2018-04-26 01:32:50 +0800
commit890a0a07a6f92ab4c86388b0ab3a98f110e07b15 (patch)
tree3e88ed4f393d1677e73d5b7b295b8f647c471176 /docs
parent258ae8927e21cddc18935e26b4184a833c85bda8 (diff)
downloaddexon-solidity-890a0a07a6f92ab4c86388b0ab3a98f110e07b15.tar.gz
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'.
Diffstat (limited to 'docs')
-rw-r--r--docs/structure-of-a-contract.rst2
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).
::