diff options
author | chriseth <chris@ethereum.org> | 2017-08-12 00:26:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-12 00:26:14 +0800 |
commit | a0f9e8e778a20f2e753bbbab1a09dd6a3535871b (patch) | |
tree | 8399eb812a91333e8243d57f3505f4de0f73b17d /docs | |
parent | 0fab0ed4276c74dddcdfa0b5dfb1330665e5b6f1 (diff) | |
parent | 5678a08d589b5ab931813463c49cbd7aae99e245 (diff) | |
download | dexon-solidity-a0f9e8e778a20f2e753bbbab1a09dd6a3535871b.tar dexon-solidity-a0f9e8e778a20f2e753bbbab1a09dd6a3535871b.tar.gz dexon-solidity-a0f9e8e778a20f2e753bbbab1a09dd6a3535871b.tar.bz2 dexon-solidity-a0f9e8e778a20f2e753bbbab1a09dd6a3535871b.tar.lz dexon-solidity-a0f9e8e778a20f2e753bbbab1a09dd6a3535871b.tar.xz dexon-solidity-a0f9e8e778a20f2e753bbbab1a09dd6a3535871b.tar.zst dexon-solidity-a0f9e8e778a20f2e753bbbab1a09dd6a3535871b.zip |
Merge pull request #2485 from jamesray1/patch-21
Update frequently-asked-questions.rst with a ref to getter functions
Diffstat (limited to 'docs')
-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 73210991..5f1a981e 100644 --- a/docs/frequently-asked-questions.rst +++ b/docs/frequently-asked-questions.rst @@ -658,7 +658,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:`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. |