aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChris Ward <chriswhward@gmail.com>2018-08-22 18:08:25 +0800
committerChris Ward <chriswhward@gmail.com>2018-10-15 20:20:51 +0800
commit6e47ca1edacdc03abd03a44ae00a9e3ea94afc69 (patch)
tree414305c1282cca78c330512a196967610ac9e021 /docs
parentc07e5f0b163418bcb1e851a4d9f343e956095aef (diff)
downloaddexon-solidity-6e47ca1edacdc03abd03a44ae00a9e3ea94afc69.tar
dexon-solidity-6e47ca1edacdc03abd03a44ae00a9e3ea94afc69.tar.gz
dexon-solidity-6e47ca1edacdc03abd03a44ae00a9e3ea94afc69.tar.bz2
dexon-solidity-6e47ca1edacdc03abd03a44ae00a9e3ea94afc69.tar.lz
dexon-solidity-6e47ca1edacdc03abd03a44ae00a9e3ea94afc69.tar.xz
dexon-solidity-6e47ca1edacdc03abd03a44ae00a9e3ea94afc69.tar.zst
dexon-solidity-6e47ca1edacdc03abd03a44ae00a9e3ea94afc69.zip
Link and clarify ABI type
Remove rogue ā€™sā€™ Clarify wording Revert other changes and just add link
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 dfe77728..50a2dc60 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -801,7 +801,7 @@ Arrays can have a compile-time fixed size or they can be dynamic.
The are few restrictions for the element, it can also be
another array, a mapping or a struct. The general restrictions for
types apply, though, in that mappings can only be used in storage
-and publicly-visible functions need parameters that are ABI types.
+and publicly-visible functions need parameters that are :ref:`ABI types <ABI>`.
An array of fixed size ``k`` and element type ``T`` is written as ``T[k]``,
an array of dynamic size as ``T[]``. As an example, an array of 5 dynamic