aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJames Ray <james.ray0001@gmail.com>2017-06-30 17:24:39 +0800
committerGitHub <noreply@github.com>2017-06-30 17:24:39 +0800
commit77e4f9c8fc5bb9e9adfde4ed1f59292852eb2ced (patch)
treece9922bd4f0096d5a9b813e4b6ba4cd36215dd9c /docs
parent355d69b4ba1d8cca4b264f4878c094e422135b8c (diff)
downloaddexon-solidity-77e4f9c8fc5bb9e9adfde4ed1f59292852eb2ced.tar
dexon-solidity-77e4f9c8fc5bb9e9adfde4ed1f59292852eb2ced.tar.gz
dexon-solidity-77e4f9c8fc5bb9e9adfde4ed1f59292852eb2ced.tar.bz2
dexon-solidity-77e4f9c8fc5bb9e9adfde4ed1f59292852eb2ced.tar.lz
dexon-solidity-77e4f9c8fc5bb9e9adfde4ed1f59292852eb2ced.tar.xz
dexon-solidity-77e4f9c8fc5bb9e9adfde4ed1f59292852eb2ced.tar.zst
dexon-solidity-77e4f9c8fc5bb9e9adfde4ed1f59292852eb2ced.zip
Changed URL for getter to a ref
Diffstat (limited to 'docs')
-rw-r--r--docs/types.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst
index ea8b0e18..7fcec508 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -806,7 +806,7 @@ Because of this, mappings do not have a length or a concept of a key or value be
Mappings are only allowed for state variables (or as storage reference types
in internal functions).
-It is possible to mark mappings ``public`` and have Solidity create a `_getter <https://solidity.readthedocs.io/en/develop/contracts.html#getter-functions>`.
+It is possible to mark mappings ``public`` and have Solidity create a :ref:`getters <visibility-and-getters>`.
The ``_KeyType`` will become a required parameter for the getter and it will
return ``_ValueType``.