diff options
author | janat08 <jey.and.key@gmail.com> | 2017-11-09 07:17:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-09 07:17:28 +0800 |
commit | dfac04d1394ff68d68b99c13edf919007f8bb038 (patch) | |
tree | d5071091025803eb4c4acc4c4288d139363de05a /docs/introduction-to-smart-contracts.rst | |
parent | dc154b4e5661945ca9c98720e097e84729a528be (diff) | |
download | dexon-solidity-dfac04d1394ff68d68b99c13edf919007f8bb038.tar.gz dexon-solidity-dfac04d1394ff68d68b99c13edf919007f8bb038.tar.zst dexon-solidity-dfac04d1394ff68d68b99c13edf919007f8bb038.zip |
Update introduction-to-smart-contracts.rst
Diffstat (limited to 'docs/introduction-to-smart-contracts.rst')
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index aedc0c09..1af2014c 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -119,8 +119,8 @@ that does not allow any arithmetic operations. It is suitable for storing addresses of contracts or keypairs belonging to external persons. The keyword ``public`` automatically generates a function that allows you to access the current value of the state variable. -Without this keyword, other contracts have no way to access the variable. -The function will look something like this:: +Without this keyword, other contracts have no way to access the variable, + but raw implementation would look something like this:: function minter() returns (address) { return minter; } |