aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJames Ray <james.ray0001@gmail.com>2017-07-07 10:07:10 +0800
committerGitHub <noreply@github.com>2017-07-07 10:07:10 +0800
commite257a6c89a0cdcb84204f423d8060b33b5f63a5b (patch)
tree7c669c1f6e5e376dd81ccd292ebc03b8a097ed9e /docs
parentd2c0c5f4621d357f57c9657aad76c3808fa8f554 (diff)
downloaddexon-solidity-e257a6c89a0cdcb84204f423d8060b33b5f63a5b.tar.gz
dexon-solidity-e257a6c89a0cdcb84204f423d8060b33b5f63a5b.tar.zst
dexon-solidity-e257a6c89a0cdcb84204f423d8060b33b5f63a5b.zip
Fixed reference to getter function
Diffstat (limited to 'docs')
-rw-r--r--docs/frequently-asked-questions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst
index b44480e3..53c43633 100644
--- a/docs/frequently-asked-questions.rst
+++ b/docs/frequently-asked-questions.rst
@@ -641,7 +641,7 @@ Not yet, as this requires two levels of dynamic arrays (``string`` is a dynamic
If you issue a call for an array, it is possible to retrieve the whole array? Or must you write a helper function for that?
===========================================================================================================================
-The automatic :ref:`getter function <Getter Functions>` for a public state variable of array type only returns
+The automatic :ref:`getter function <_getter_functions>` for a public state variable of array type only returns
individual elements. If you want to return the complete array, you have to
manually write a function to do that.