diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-19 18:02:14 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-19 18:02:14 +0800 |
commit | a061e8db3463114171f3bd26831b9ac17019080a (patch) | |
tree | 507b3f7b06907ba95d54fb96b0beab70040b2d17 /docs/abi-spec.rst | |
parent | 32965807a7f4914e184d7093048beb791cb32376 (diff) | |
download | dexon-solidity-a061e8db3463114171f3bd26831b9ac17019080a.tar.gz dexon-solidity-a061e8db3463114171f3bd26831b9ac17019080a.tar.zst dexon-solidity-a061e8db3463114171f3bd26831b9ac17019080a.zip |
Clarify shorthand notation in ABI
Diffstat (limited to 'docs/abi-spec.rst')
-rw-r--r-- | docs/abi-spec.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst index b750deee..29d98645 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -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``. |