Updated reference to getter-functions

This commit is contained in:
James Ray 2017-07-28 11:34:22 +10:00 committed by GitHub
parent 221a013042
commit 89551d9968

View File

@ -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