diff options
author | chriseth <chris@ethereum.org> | 2017-08-12 00:26:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-12 00:26:46 +0800 |
commit | 5b26e2bcee5f0cf3243fdcda53b47739f10158bb (patch) | |
tree | ef228247a7f363dbc14f9846e6a4dabaca7231ed | |
parent | a0f9e8e778a20f2e753bbbab1a09dd6a3535871b (diff) | |
parent | 0da46f259f357c09303363147bb8b2cc738843f6 (diff) | |
download | dexon-solidity-5b26e2bcee5f0cf3243fdcda53b47739f10158bb.tar.gz dexon-solidity-5b26e2bcee5f0cf3243fdcda53b47739f10158bb.tar.zst dexon-solidity-5b26e2bcee5f0cf3243fdcda53b47739f10158bb.zip |
Merge pull request #2486 from jamesray1/patch-22
Ref to getter function in docs/miscellaneous.rst
-rw-r--r-- | docs/miscellaneous.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index e364bee7..199182d3 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -494,7 +494,7 @@ Function Visibility Specifiers return true; } -- ``public``: visible externally and internally (creates getter function for storage/state variables) +- ``public``: visible externally and internally (creates a :ref:`getter function<getter-functions>` for storage/state variables) - ``private``: only visible in the current contract - ``external``: only visible externally (only for functions) - i.e. can only be message-called (via ``this.func``) - ``internal``: only visible internally |