diff options
author | Chris Ward <chriswhward@gmail.com> | 2018-09-17 21:56:04 +0800 |
---|---|---|
committer | Chris Ward <chriswhward@gmail.com> | 2018-09-17 21:56:04 +0800 |
commit | 98349929cd2e533b1ca81202a725cfa1575ba831 (patch) | |
tree | 5861f7790878bd8c6e472b992d66f63f8d11219e | |
parent | 804ea43782af1707bf7d36bfd1ead352fca9917e (diff) | |
download | dexon-solidity-98349929cd2e533b1ca81202a725cfa1575ba831.tar.gz dexon-solidity-98349929cd2e533b1ca81202a725cfa1575ba831.tar.zst dexon-solidity-98349929cd2e533b1ca81202a725cfa1575ba831.zip |
Add clarification of state variables
-rw-r--r-- | docs/structure-of-a-contract.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/structure-of-a-contract.rst b/docs/structure-of-a-contract.rst index 1b4a6c55..d8bc51b8 100644 --- a/docs/structure-of-a-contract.rst +++ b/docs/structure-of-a-contract.rst @@ -21,7 +21,8 @@ which serves to provide a quick overview. State Variables =============== -State variables are values which are permanently stored in contract storage. +State variables are variables whose values are permanently stored in contract +storage. :: |