aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorLeanne <shaptonleanne@gmail.com>2018-11-04 04:02:41 +0800
committerGitHub <noreply@github.com>2018-11-04 04:02:41 +0800
commite5836fc27616705cfd556565ef571e2ed17db1d1 (patch)
tree3c791f502b7677d7cd99e66be39d6ee9e78f03a1 /docs
parent2672d9a8a4ca89a122385ed3434d4ecac9f4e31f (diff)
downloaddexon-solidity-e5836fc27616705cfd556565ef571e2ed17db1d1.tar
dexon-solidity-e5836fc27616705cfd556565ef571e2ed17db1d1.tar.gz
dexon-solidity-e5836fc27616705cfd556565ef571e2ed17db1d1.tar.bz2
dexon-solidity-e5836fc27616705cfd556565ef571e2ed17db1d1.tar.lz
dexon-solidity-e5836fc27616705cfd556565ef571e2ed17db1d1.tar.xz
dexon-solidity-e5836fc27616705cfd556565ef571e2ed17db1d1.tar.zst
dexon-solidity-e5836fc27616705cfd556565ef571e2ed17db1d1.zip
Fixes typo
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 f71f1e23..752e8641 100644
--- a/docs/solidity-by-example.rst
+++ b/docs/solidity-by-example.rst
@@ -877,7 +877,7 @@ two parties (Alice and Bob). Using it involves three steps:
2. Alice signs messages that specify how much of that Ether is owed to the recipient. This step is repeated for each payment.
3. Bob "closes" the payment channel, withdrawing their portion of the Ether and sending the remainder back to the sender.
-Not ethat only steps 1 and 3 require Ethereum transactions, step 2 means that
+Note that only steps 1 and 3 require Ethereum transactions, step 2 means that
the sender transmits a cryptographically signed message to the recipient via off chain ways (e.g. email).
This means only two transactions are required to support any number of transfers.