Merge pull request #2486 from jamesray1/patch-22

Ref to getter function in docs/miscellaneous.rst
This commit is contained in:
chriseth 2017-08-11 18:26:46 +02:00 committed by GitHub
commit 5b26e2bcee

View File

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