aboutsummaryrefslogtreecommitdiffstats
path: root/docs/control-structures.rst
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-08-18 04:42:43 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-08-24 23:43:56 +0800
commit2716d01f2cc8cb06f73d170c94d1c4c8fef172a9 (patch)
tree16ce66252ffd8d236128e5f9dfa233d9713d1565 /docs/control-structures.rst
parent89004edb2f4ad02fc06546d1c88f4c91b78388e5 (diff)
downloaddexon-solidity-2716d01f2cc8cb06f73d170c94d1c4c8fef172a9.tar
dexon-solidity-2716d01f2cc8cb06f73d170c94d1c4c8fef172a9.tar.gz
dexon-solidity-2716d01f2cc8cb06f73d170c94d1c4c8fef172a9.tar.bz2
dexon-solidity-2716d01f2cc8cb06f73d170c94d1c4c8fef172a9.tar.lz
dexon-solidity-2716d01f2cc8cb06f73d170c94d1c4c8fef172a9.tar.xz
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.rst4
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 |
+-------------------------+------+-----------------------------------------------------------------+