diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-18 04:42:43 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-24 23:43:56 +0800 |
commit | 2716d01f2cc8cb06f73d170c94d1c4c8fef172a9 (patch) | |
tree | 16ce66252ffd8d236128e5f9dfa233d9713d1565 /docs/control-structures.rst | |
parent | 89004edb2f4ad02fc06546d1c88f4c91b78388e5 (diff) | |
download | dexon-solidity-2716d01f2cc8cb06f73d170c94d1c4c8fef172a9.tar.gz dexon-solidity-2716d01f2cc8cb06f73d170c94d1c4c8fef172a9.tar.zst dexon-solidity-2716d01f2cc8cb06f73d170c94d1c4c8fef172a9.zip |
Rename "call data" to "calldata"
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r-- | docs/control-structures.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 739620a2..43a1a31e 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -503,9 +503,9 @@ The opcodes ``pushi`` and ``jumpdest`` cannot be used directly. +-------------------------+------+-----------------------------------------------------------------+ | callvalue | | wei sent together with the current call | +-------------------------+------+-----------------------------------------------------------------+ -| calldataload(p) | | call data starting from position p (32 bytes) | +| calldataload(p) | | calldata starting from position p (32 bytes) | +-------------------------+------+-----------------------------------------------------------------+ -| calldatasize | | size of call data in bytes | +| calldatasize | | size of calldata in bytes | +-------------------------+------+-----------------------------------------------------------------+ | calldatacopy(t, f, s) | `-` | copy s bytes from calldata at position f to mem at position t | +-------------------------+------+-----------------------------------------------------------------+ |