From 355d69b4ba1d8cca4b264f4878c094e422135b8c Mon Sep 17 00:00:00 2001 From: James Ray Date: Fri, 30 Jun 2017 19:19:06 +1000 Subject: [PATCH] Used a ref for getter instead of a URL. --- docs/types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/types.rst b/docs/types.rst index 52d07be82..ea8b0e183 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 `. The numeric index will become a required parameter for the getter. .. index:: ! array;allocating, new