aboutsummaryrefslogtreecommitdiffstats
path: root/docs/types.rst
diff options
context:
space:
mode:
authorChris Ward <chriswhward@gmail.com>2018-10-24 19:23:15 +0800
committerchriseth <chris@ethereum.org>2018-11-14 21:20:49 +0800
commitfa1cb346ae3c79785bcf66fd0bb7bdb4ed130cdd (patch)
treef08a8334d56c386b5df39b794c9f2e073af228f3 /docs/types.rst
parentb0a2e41eafa369a747aa05cc88977051ef9ff527 (diff)
downloaddexon-solidity-fa1cb346ae3c79785bcf66fd0bb7bdb4ed130cdd.tar.gz
dexon-solidity-fa1cb346ae3c79785bcf66fd0bb7bdb4ed130cdd.tar.zst
dexon-solidity-fa1cb346ae3c79785bcf66fd0bb7bdb4ed130cdd.zip
Update syntax used for input and output parameters
Diffstat (limited to 'docs/types.rst')
-rw-r--r--docs/types.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst
index 34b94b88..87e7011a 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -253,7 +253,7 @@ Send is the low-level counterpart of ``transfer``. If the execution fails, the c
In order to interface with contracts that do not adhere to the ABI,
or to get more direct control over the encoding,
the functions ``call``, ``delegatecall`` and ``staticcall`` are provided.
-They all take a single ``bytes memory`` argument as input and
+They all take a single ``bytes memory`` parameter and
return the success condition (as a ``bool``) and the returned data
(``bytes memory``).
The functions ``abi.encode``, ``abi.encodePacked``, ``abi.encodeWithSelector``