diff options
author | James Ray <james.ray0001@gmail.com> | 2017-06-30 17:42:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-30 17:42:53 +0800 |
commit | d2c0c5f4621d357f57c9657aad76c3808fa8f554 (patch) | |
tree | 17ff81b4b0d9bd556fbac360ef198c362d6fa363 | |
parent | c94c77d2d165900cb0926e96764ca4e1a18b7a84 (diff) | |
download | dexon-solidity-d2c0c5f4621d357f57c9657aad76c3808fa8f554.tar.gz dexon-solidity-d2c0c5f4621d357f57c9657aad76c3808fa8f554.tar.zst dexon-solidity-d2c0c5f4621d357f57c9657aad76c3808fa8f554.zip |
Getter function ref
-rw-r--r-- | docs/frequently-asked-questions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/frequently-asked-questions.rst b/docs/frequently-asked-questions.rst index 8eaa5c5a..b44480e3 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:`getters <visibility-and-getters>` function 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. |