aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ray <james.ray0001@gmail.com>2017-07-07 10:07:16 +0800
committerGitHub <noreply@github.com>2017-07-07 10:07:16 +0800
commitba0d277e103aadd4b43ca3be86a014159d115138 (patch)
tree4ed4db4e2ac34f9fd6587152237767b89ef23ab7
parenteb84acbbcb77531b8d544e2ef9c575e12638d62f (diff)
downloaddexon-solidity-ba0d277e103aadd4b43ca3be86a014159d115138.tar
dexon-solidity-ba0d277e103aadd4b43ca3be86a014159d115138.tar.gz
dexon-solidity-ba0d277e103aadd4b43ca3be86a014159d115138.tar.bz2
dexon-solidity-ba0d277e103aadd4b43ca3be86a014159d115138.tar.lz
dexon-solidity-ba0d277e103aadd4b43ca3be86a014159d115138.tar.xz
dexon-solidity-ba0d277e103aadd4b43ca3be86a014159d115138.tar.zst
dexon-solidity-ba0d277e103aadd4b43ca3be86a014159d115138.zip
Fixed reference to getter function
-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 b4674a43..6ad56ff3 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 function <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::