diff options
author | James Ray <james.ray0001@gmail.com> | 2017-06-30 17:51:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-30 17:51:10 +0800 |
commit | eb84acbbcb77531b8d544e2ef9c575e12638d62f (patch) | |
tree | b7cf2caf9b0ae392a5d8c360143e44e85b26e828 /docs/introduction-to-smart-contracts.rst | |
parent | 735c977db1824436d09d8e7a5c120fcab21003c3 (diff) | |
download | dexon-solidity-eb84acbbcb77531b8d544e2ef9c575e12638d62f.tar.gz dexon-solidity-eb84acbbcb77531b8d544e2ef9c575e12638d62f.tar.zst dexon-solidity-eb84acbbcb77531b8d544e2ef9c575e12638d62f.zip |
Ref to getter function
Diffstat (limited to 'docs/introduction-to-smart-contracts.rst')
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index dc7c6cc9..b4674a43 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -133,7 +133,7 @@ too far, though, as it is neither possible to obtain a list of all keys of a mapping, nor a list of all values. So either keep in mind (or better, keep a list or use a more advanced data type) what you added to the mapping or use it in a context where this is not needed, -like this one. The getter function created by the ``public`` keyword +like this one. The :ref:`getter function <Getter Functions>` created by the ``public`` keyword is a bit more complex in this case. It roughly looks like the following:: |