aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-07-17 01:28:17 +0800
committerGitHub <noreply@github.com>2018-07-17 01:28:17 +0800
commitf36cc98c0b3978d916ef22cc4eb2ed8bc19e25ac (patch)
tree5c704e016636a185e5e2c9fb2ae8c6826b06f644
parent0f23445d84ce1abe8cad8ff438f76f65f3acf77f (diff)
parent3bf8fb741e300642da91c9b20df5a26b9687f219 (diff)
downloaddexon-solidity-f36cc98c0b3978d916ef22cc4eb2ed8bc19e25ac.tar.gz
dexon-solidity-f36cc98c0b3978d916ef22cc4eb2ed8bc19e25ac.tar.zst
dexon-solidity-f36cc98c0b3978d916ef22cc4eb2ed8bc19e25ac.zip
Merge pull request #4515 from nventuro/patch-1
Minor doc style fix
-rw-r--r--docs/units-and-global-variables.rst3
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::