aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-08-12 00:25:23 +0800
committerGitHub <noreply@github.com>2017-08-12 00:25:23 +0800
commit0fab0ed4276c74dddcdfa0b5dfb1330665e5b6f1 (patch)
tree4d489afac6b1b3d31bab021c83f002df708095f4
parent20540bc6afa668744e8dca55dd3b507bda8e3960 (diff)
parent8a19b2f24eeeae37a7d8e4ab1b764d046f55411b (diff)
downloaddexon-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
-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 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::