aboutsummaryrefslogtreecommitdiffstats
path: root/docs/frequently-asked-questions.rst
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-02-03 07:52:34 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-02-03 08:17:21 +0800
commitace583d0a1ec21cc184fb5734a9fd8c2147391e4 (patch)
treeb05291501171ac29b1b4910ecb4ba55dcb999c23 /docs/frequently-asked-questions.rst
parentbea59b0ca7fd497baf82e5960649854dff268d8a (diff)
downloaddexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar
dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.gz
dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.bz2
dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.lz
dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.xz
dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.tar.zst
dexon-solidity-ace583d0a1ec21cc184fb5734a9fd8c2147391e4.zip
Rename accessor to getter
Diffstat (limited to 'docs/frequently-asked-questions.rst')
-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 43fba332..d2fc5b1c 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 accessor function for a public state variable of array type only returns
+The automatic getter 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.