Clarify shorthand notation in ABI

This commit is contained in:
Alex Beregszaszi 2017-09-19 11:02:14 +01:00
parent 32965807a7
commit a061e8db34

View File

@ -42,7 +42,7 @@ The following elementary types exist:
- ``address``: equivalent to ``uint160``, except for the assumed interpretation and language typing.
- ``uint``, ``int``: synonyms for ``uint256``, ``int256`` respectively (not to be used for computing the function selector).
- ``uint``, ``int``: synonyms for ``uint256``, ``int256`` respectively (this shorthand not to be used for computing the function selector).
- ``bool``: equivalent to ``uint8`` restricted to the values 0 and 1
@ -50,7 +50,7 @@ The following elementary types exist:
- ``ufixed<M>x<N>``: unsigned variant of ``fixed<M>x<N>``.
- ``fixed``, ``ufixed``: synonyms for ``fixed128x19``, ``ufixed128x19`` respectively (not to be used for computing the function selector).
- ``fixed``, ``ufixed``: synonyms for ``fixed128x19``, ``ufixed128x19`` respectively (this shorthand not to be used for computing the function selector).
- ``bytes<M>``: binary type of ``M`` bytes, ``0 < M <= 32``.