aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJames Ray <james.ray0001@gmail.com>2017-07-31 18:26:26 +0800
committerGitHub <noreply@github.com>2017-07-31 18:26:26 +0800
commit8a19b2f24eeeae37a7d8e4ab1b764d046f55411b (patch)
tree35b6bdef0998298bf45d81bc0fe8c3da316573f6 /docs
parent0c63f271a2d8c85823571e0c461cd213bebe44a5 (diff)
downloaddexon-solidity-8a19b2f24eeeae37a7d8e4ab1b764d046f55411b.tar
dexon-solidity-8a19b2f24eeeae37a7d8e4ab1b764d046f55411b.tar.gz
dexon-solidity-8a19b2f24eeeae37a7d8e4ab1b764d046f55411b.tar.bz2
dexon-solidity-8a19b2f24eeeae37a7d8e4ab1b764d046f55411b.tar.lz
dexon-solidity-8a19b2f24eeeae37a7d8e4ab1b764d046f55411b.tar.xz
dexon-solidity-8a19b2f24eeeae37a7d8e4ab1b764d046f55411b.tar.zst
dexon-solidity-8a19b2f24eeeae37a7d8e4ab1b764d046f55411b.zip
:ref:`getter function<getter-functions>`
Diffstat (limited to 'docs')
-rw-r--r--docs/introduction-to-smart-contracts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst
index cf5e46be..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 :ref:`getter-functions` 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::