aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMathias Baumann <marenz@supradigital.org>2018-12-19 03:17:44 +0800
committerMathias Baumann <marenz@supradigital.org>2018-12-19 03:17:44 +0800
commit36dc56fa7727d83e97ba09e512e749d227480367 (patch)
treee3f7b78a160e0a25b18c11a41362114cf82a5e13 /docs
parenteed46f001132d6052c6afe16e6dfb16967571167 (diff)
downloaddexon-solidity-36dc56fa7727d83e97ba09e512e749d227480367.tar.gz
dexon-solidity-36dc56fa7727d83e97ba09e512e749d227480367.tar.zst
dexon-solidity-36dc56fa7727d83e97ba09e512e749d227480367.zip
Doc: Fix typo "a messy" -> "a mess"
Diffstat (limited to 'docs')
-rw-r--r--docs/solidity-by-example.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst
index d07452c5..0041e80c 100644
--- a/docs/solidity-by-example.rst
+++ b/docs/solidity-by-example.rst
@@ -743,7 +743,7 @@ In general, ECDSA signatures consist of two parameters, ``r`` and ``s``. Signatu
Extracting the Signature Parameters
-----------------------------------
-Signatures produced by web3.js are the concatenation of ``r``, ``s`` and ``v``, so the first step is to split these parameters apart. You can do this on the client-side, but doing it inside the smart contract means you only need to send one signature parameter rather than three. Splitting apart a byte array into component parts is a messy, so we use `inline assembly <assembly>`_ to do the job in the ``splitSignature`` function (the third function in the full contract at the end of this section).
+Signatures produced by web3.js are the concatenation of ``r``, ``s`` and ``v``, so the first step is to split these parameters apart. You can do this on the client-side, but doing it inside the smart contract means you only need to send one signature parameter rather than three. Splitting apart a byte array into component parts is a mess, so we use `inline assembly <assembly>`_ to do the job in the ``splitSignature`` function (the third function in the full contract at the end of this section).
Computing the Message Hash
--------------------------