aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJames Ray <james.ray0001@gmail.com>2017-06-30 17:35:00 +0800
committerGitHub <noreply@github.com>2017-06-30 17:35:00 +0800
commitc94c77d2d165900cb0926e96764ca4e1a18b7a84 (patch)
tree06a96b2475723962c4a5a483ec6dcc092da98b2d /docs
parent735c977db1824436d09d8e7a5c120fcab21003c3 (diff)
downloaddexon-solidity-c94c77d2d165900cb0926e96764ca4e1a18b7a84.tar
dexon-solidity-c94c77d2d165900cb0926e96764ca4e1a18b7a84.tar.gz
dexon-solidity-c94c77d2d165900cb0926e96764ca4e1a18b7a84.tar.bz2
dexon-solidity-c94c77d2d165900cb0926e96764ca4e1a18b7a84.tar.lz
dexon-solidity-c94c77d2d165900cb0926e96764ca4e1a18b7a84.tar.xz
dexon-solidity-c94c77d2d165900cb0926e96764ca4e1a18b7a84.tar.zst
dexon-solidity-c94c77d2d165900cb0926e96764ca4e1a18b7a84.zip
Update frequently-asked-questions.rst
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 03ee8388..8eaa5c5a 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 getter function for a public state variable of array type only returns
+The automatic :ref:`getters <visibility-and-getters>` function 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.