aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Ray <james.ray0001@gmail.com>2017-07-31 18:32:34 +0800
committerGitHub <noreply@github.com>2017-07-31 18:32:34 +0800
commit5678a08d589b5ab931813463c49cbd7aae99e245 (patch)
treee39908a67d6a87eff7db2618fafa45778cb26f72
parent3c3060dd870b9971e3f571faca3f9036995306b9 (diff)
downloaddexon-solidity-5678a08d589b5ab931813463c49cbd7aae99e245.tar.gz
dexon-solidity-5678a08d589b5ab931813463c49cbd7aae99e245.tar.zst
dexon-solidity-5678a08d589b5ab931813463c49cbd7aae99e245.zip
:ref:`getter function<getter-functions>`
-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 e7ccb3db..47c87c5a 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-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.