diff options
author | chriseth <chris@ethereum.org> | 2018-03-08 16:52:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-08 16:52:54 +0800 |
commit | 30443f3a3e8131813dc6c62c2096c5d79f100a86 (patch) | |
tree | 765cd15e8732a0725953534b3561c992f3c0a0d8 /docs/abi-spec.rst | |
parent | fbc29f6da1319a5c54629dd45a93a8e7f1b09d6e (diff) | |
parent | 7ebd580954b355605025a9ef46602382145a2cdc (diff) | |
download | dexon-solidity-30443f3a3e8131813dc6c62c2096c5d79f100a86.tar dexon-solidity-30443f3a3e8131813dc6c62c2096c5d79f100a86.tar.gz dexon-solidity-30443f3a3e8131813dc6c62c2096c5d79f100a86.tar.bz2 dexon-solidity-30443f3a3e8131813dc6c62c2096c5d79f100a86.tar.lz dexon-solidity-30443f3a3e8131813dc6c62c2096c5d79f100a86.tar.xz dexon-solidity-30443f3a3e8131813dc6c62c2096c5d79f100a86.tar.zst dexon-solidity-30443f3a3e8131813dc6c62c2096c5d79f100a86.zip |
Merge pull request #3683 from grzegorzszczecin/fix_doc
Fix a typo.
Diffstat (limited to 'docs/abi-spec.rst')
-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 4a61d91f..4d84a7da 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -58,7 +58,7 @@ The following elementary types exist: - ``bytes<M>``: binary type of ``M`` bytes, ``0 < M <= 32``. -- ``function``: an address (20 bytes) folled by a function selector (4 bytes). Encoded identical to ``bytes24``. +- ``function``: an address (20 bytes) followed by a function selector (4 bytes). Encoded identical to ``bytes24``. The following (fixed-size) array type exists: |