aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxinbenlv <zzn@zzn.im>2018-07-02 13:23:23 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-07-09 19:24:54 +0800
commit1e7d44d31c99558c8c3e98ac5413492cea4bd516 (patch)
treeb69fa528e0bf80d6724bdbe6760badfe83bf66dd
parente289c36158701ba0b874051e9e426e270b0e38e2 (diff)
downloaddexon-solidity-1e7d44d31c99558c8c3e98ac5413492cea4bd516.tar
dexon-solidity-1e7d44d31c99558c8c3e98ac5413492cea4bd516.tar.gz
dexon-solidity-1e7d44d31c99558c8c3e98ac5413492cea4bd516.tar.bz2
dexon-solidity-1e7d44d31c99558c8c3e98ac5413492cea4bd516.tar.lz
dexon-solidity-1e7d44d31c99558c8c3e98ac5413492cea4bd516.tar.xz
dexon-solidity-1e7d44d31c99558c8c3e98ac5413492cea4bd516.tar.zst
dexon-solidity-1e7d44d31c99558c8c3e98ac5413492cea4bd516.zip
Indicate what the abbreviation ABI stands for in the ABI documentation
-rw-r--r--docs/abi-spec.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst
index e4f8ed4f..9c5bddd5 100644
--- a/docs/abi-spec.rst
+++ b/docs/abi-spec.rst
@@ -9,7 +9,7 @@ Application Binary Interface Specification
Basic Design
============
-The Application Binary Interface is the standard way to interact with contracts in the Ethereum ecosystem, both
+The Application Binary Interface (ABI) is the standard way to interact with contracts in the Ethereum ecosystem, both
from outside the blockchain and for contract-to-contract interaction. Data is encoded according to its type,
as described in this specification. The encoding is not self describing and thus requires a schema in order to decode.
@@ -582,4 +582,4 @@ Note that constants will be packed using the minimum number of bytes required to
This means that, for example, ``abi.encodePacked(0) == abi.encodePacked(uint8(0)) == hex"00"`` and
``abi.encodePacked(0x12345678) == abi.encodePacked(uint32(0x12345678)) == hex"12345678"``.
-If padding is needed, explicit type conversions can be used: ``abi.encodePacked(uint16(0x12)) == hex"0012"``. \ No newline at end of file
+If padding is needed, explicit type conversions can be used: ``abi.encodePacked(uint16(0x12)) == hex"0012"``.