aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJames Ray <james.ray0001@gmail.com>2017-07-28 09:34:22 +0800
committerGitHub <noreply@github.com>2017-07-28 09:34:22 +0800
commit89551d9968493e1b392c70cf514c84415735d50e (patch)
tree5a277d25e9837841591c186657b0c7efc047b276 /docs
parent221a013042ea3133aca743ba127526185df71268 (diff)
downloaddexon-solidity-89551d9968493e1b392c70cf514c84415735d50e.tar.gz
dexon-solidity-89551d9968493e1b392c70cf514c84415735d50e.tar.zst
dexon-solidity-89551d9968493e1b392c70cf514c84415735d50e.zip
Updated reference to getter-functions
Diffstat (limited to 'docs')
-rw-r--r--docs/miscellaneous.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst
index 812045a2..8b88f00c 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