diff options
author | chriseth <chris@ethereum.org> | 2017-08-12 00:25:23 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-12 00:25:23 +0800 |
commit | 0fab0ed4276c74dddcdfa0b5dfb1330665e5b6f1 (patch) | |
tree | 4d489afac6b1b3d31bab021c83f002df708095f4 /docs | |
parent | 20540bc6afa668744e8dca55dd3b507bda8e3960 (diff) | |
parent | 8a19b2f24eeeae37a7d8e4ab1b764d046f55411b (diff) | |
download | dexon-solidity-0fab0ed4276c74dddcdfa0b5dfb1330665e5b6f1.tar.gz dexon-solidity-0fab0ed4276c74dddcdfa0b5dfb1330665e5b6f1.tar.zst dexon-solidity-0fab0ed4276c74dddcdfa0b5dfb1330665e5b6f1.zip |
Merge pull request #2487 from jamesray1/patch-23
Ref to getter function in docs/introduction-to-smart-contracts.rst
Diffstat (limited to 'docs')
-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..1f1373cf 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:: |