diff options
author | Chris Ward <chriswhward@gmail.com> | 2018-10-24 19:23:15 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-11-14 21:20:49 +0800 |
commit | fa1cb346ae3c79785bcf66fd0bb7bdb4ed130cdd (patch) | |
tree | f08a8334d56c386b5df39b794c9f2e073af228f3 /docs/types.rst | |
parent | b0a2e41eafa369a747aa05cc88977051ef9ff527 (diff) | |
download | dexon-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.rst | 2 |
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`` |