aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-10-15 20:40:07 +0800
committerGitHub <noreply@github.com>2018-10-15 20:40:07 +0800
commit88b1558862602049261b8530c6c7edcd23b96eb7 (patch)
tree4391ae07f94ebd5b87d89fbea4633c62eabb21cb /docs
parent6202628cfe5d1032adeae12153175a78a5596e69 (diff)
parent6e47ca1edacdc03abd03a44ae00a9e3ea94afc69 (diff)
downloaddexon-solidity-88b1558862602049261b8530c6c7edcd23b96eb7.tar
dexon-solidity-88b1558862602049261b8530c6c7edcd23b96eb7.tar.gz
dexon-solidity-88b1558862602049261b8530c6c7edcd23b96eb7.tar.bz2
dexon-solidity-88b1558862602049261b8530c6c7edcd23b96eb7.tar.lz
dexon-solidity-88b1558862602049261b8530c6c7edcd23b96eb7.tar.xz
dexon-solidity-88b1558862602049261b8530c6c7edcd23b96eb7.tar.zst
dexon-solidity-88b1558862602049261b8530c6c7edcd23b96eb7.zip
Merge pull request #4843 from ethereum/docs-2177-abi-type
Link and clarify ABI type
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 e265e668..bd5d1734 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -802,7 +802,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