Fix ABI spec regarding arrays.

This commit is contained in:
chriseth 2017-09-19 10:22:28 +02:00 committed by Alex Beregszaszi
parent 1fc71bd758
commit 32965807a7

View File

@ -58,7 +58,7 @@ The following elementary types exist:
The following (fixed-size) array type exists:
- ``<type>[M]``: a fixed-length array of the given fixed-length type.
- ``<type>[M]``: a fixed-length array of ``M`` elements, ``M > 0``, of the given type.
The following non-fixed-size types exist:
@ -66,7 +66,7 @@ The following non-fixed-size types exist:
- ``string``: dynamic sized unicode string assumed to be UTF-8 encoded.
- ``<type>[]``: a variable-length array of the given fixed-length type.
- ``<type>[]``: a variable-length array of elements of the given type.
Types can be combined to a tuple by enclosing a finite non-negative number
of them inside parentheses, separated by commas: