diff options
author | James Ray <james.ray0001@gmail.com> | 2017-07-07 10:07:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-07 10:07:25 +0800 |
commit | 221a013042ea3133aca743ba127526185df71268 (patch) | |
tree | 8f4fd558ce1d430e101fd6ca460d32f198d9313f /docs/miscellaneous.rst | |
parent | 433039f105448c671e35c4670c79a37ccfd864bc (diff) | |
download | dexon-solidity-221a013042ea3133aca743ba127526185df71268.tar.gz dexon-solidity-221a013042ea3133aca743ba127526185df71268.tar.zst dexon-solidity-221a013042ea3133aca743ba127526185df71268.zip |
Fixed reference to getter function
Diffstat (limited to '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 1b467b5c..812045a2 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -491,7 +491,7 @@ Function Visibility Specifiers return true; } -- ``public``: visible externally and internally (creates a :ref:`getter function <Getter Functions>` 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 |