Update syntax used for input and output parameters

This commit is contained in:
Chris Ward
2018-11-14 14:20:49 +01:00
committed by chriseth
parent b0a2e41eaf
commit fa1cb346ae
3 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -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``