Used a ref for getter instead of a URL.

This commit is contained in:
James Ray 2017-06-30 19:19:06 +10:00 committed by GitHub
parent 2ac51a1a90
commit 355d69b4ba

View File

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