diff options
author | William Entriken <github.com@phor.net> | 2018-02-20 04:38:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-20 04:38:55 +0800 |
commit | 360009c37667183a7aeab48b5827b4d3e6055b17 (patch) | |
tree | e4e623c88087099db966ad5388ee88b170ffbda5 /docs | |
parent | 59f5a3137626b3521fdcb1c5767ce014dc04ee96 (diff) | |
download | dexon-solidity-360009c37667183a7aeab48b5827b4d3e6055b17.tar.gz dexon-solidity-360009c37667183a7aeab48b5827b4d3e6055b17.tar.zst dexon-solidity-360009c37667183a7aeab48b5827b4d3e6055b17.zip |
Typo
Diffstat (limited to 'docs')
-rw-r--r-- | docs/abi-spec.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst index 8095a3b7..f249bbcd 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -157,7 +157,7 @@ on the type of ``X`` being - ``uint<M>``: ``enc(X)`` is the big-endian encoding of ``X``, padded on the higher-order (left) side with zero-bytes such that the length is a multiple of 32 bytes. - ``address``: as in the ``uint160`` case -- ``int<M>``: ``enc(X)`` is the big-endian two's complement encoding of ``X``, padded on the higher-oder (left) side with ``0xff`` for negative ``X`` and with zero bytes for positive ``X`` such that the length is a multiple of 32 bytes. +- ``int<M>``: ``enc(X)`` is the big-endian two's complement encoding of ``X``, padded on the higher-order (left) side with ``0xff`` for negative ``X`` and with zero bytes for positive ``X`` such that the length is a multiple of 32 bytes. - ``bool``: as in the ``uint8`` case, where ``1`` is used for ``true`` and ``0`` for ``false`` - ``fixed<M>x<N>``: ``enc(X)`` is ``enc(X * 10**N)`` where ``X * 10**N`` is interpreted as a ``int256``. - ``fixed``: as in the ``fixed128x19`` case |