diff options
author | Nicolás Venturo <nicolas.venturo@gmail.com> | 2018-07-17 01:26:05 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-17 01:26:05 +0800 |
commit | 3bf8fb741e300642da91c9b20df5a26b9687f219 (patch) | |
tree | 5c704e016636a185e5e2c9fb2ae8c6826b06f644 /docs | |
parent | 0f23445d84ce1abe8cad8ff438f76f65f3acf77f (diff) | |
download | dexon-solidity-3bf8fb741e300642da91c9b20df5a26b9687f219.tar.gz dexon-solidity-3bf8fb741e300642da91c9b20df5a26b9687f219.tar.zst dexon-solidity-3bf8fb741e300642da91c9b20df5a26b9687f219.zip |
Minor doc style fix
An extra newline caused a line to appear in bold.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/units-and-global-variables.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst index b24b8b71..6eae2804 100644 --- a/docs/units-and-global-variables.rst +++ b/docs/units-and-global-variables.rst @@ -101,8 +101,7 @@ ABI Encoding Functions - ``abi.encode(...) returns (bytes)``: ABI-encodes the given arguments - ``abi.encodePacked(...) returns (bytes)``: Performs :ref:`packed encoding <abi_packed_mode>` of the given arguments -- ``abi.encodeWithSelector(bytes4 selector, ...) returns (bytes)``: ABI-encodes the given arguments - starting from the second and prepends the given four-byte selector +- ``abi.encodeWithSelector(bytes4 selector, ...) returns (bytes)``: ABI-encodes the given arguments starting from the second and prepends the given four-byte selector - ``abi.encodeWithSignature(string signature, ...) returns (bytes)``: Equivalent to ``abi.encodeWithSelector(bytes4(keccak256(bytes(signature)), ...)``` .. note:: |