aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
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 8b88f00c..493e701b 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-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