aboutsummaryrefslogtreecommitdiffstats
path: root/docs/types.rst
diff options
context:
space:
mode:
authorJames Ray <james.ray0001@gmail.com>2017-06-30 17:19:06 +0800
committerGitHub <noreply@github.com>2017-06-30 17:19:06 +0800
commit355d69b4ba1d8cca4b264f4878c094e422135b8c (patch)
tree0e8968ed6cb5fcf2f853ceb9c7c5a5804c041e09 /docs/types.rst
parent2ac51a1a9026f1ae451e030c70aa3be9f0da83e8 (diff)
downloaddexon-solidity-355d69b4ba1d8cca4b264f4878c094e422135b8c.tar.gz
dexon-solidity-355d69b4ba1d8cca4b264f4878c094e422135b8c.tar.zst
dexon-solidity-355d69b4ba1d8cca4b264f4878c094e422135b8c.zip
Used a ref for getter instead of a URL.
Diffstat (limited to 'docs/types.rst')
-rw-r--r--docs/types.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst
index 52d07be8..ea8b0e18 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -557,7 +557,7 @@ So ``bytes`` should always be preferred over ``byte[]`` because it is cheaper.
that you are accessing the low-level bytes of the UTF-8 representation,
and not the individual characters!
-It is possible to mark arrays ``public`` and have Solidity create a _`[getter](https://solidity.readthedocs.io/en/develop/contracts.html#getter-functions)`_.
+It is possible to mark arrays ``public`` and have Solidity create a :ref:`getters <visibility-and-getters>`.
The numeric index will become a required parameter for the getter.
.. index:: ! array;allocating, new