diff options
author | Crypto Jerônimo <crypto.jeronimo@gmail.com> | 2018-08-15 15:18:57 +0800 |
---|---|---|
committer | Crypto Jerônimo <crypto.jeronimo@gmail.com> | 2018-08-15 15:18:57 +0800 |
commit | 628919f416b224e0cee65aa13c9adbec3825f928 (patch) | |
tree | 424a47633ee3ceae67d27a8043056cd8cf0e213a /docs/solidity-by-example.rst | |
parent | f82893450d36d1e2d136b0cbd4449ff955410fb5 (diff) | |
download | dexon-solidity-628919f416b224e0cee65aa13c9adbec3825f928.tar dexon-solidity-628919f416b224e0cee65aa13c9adbec3825f928.tar.gz dexon-solidity-628919f416b224e0cee65aa13c9adbec3825f928.tar.bz2 dexon-solidity-628919f416b224e0cee65aa13c9adbec3825f928.tar.lz dexon-solidity-628919f416b224e0cee65aa13c9adbec3825f928.tar.xz dexon-solidity-628919f416b224e0cee65aa13c9adbec3825f928.tar.zst dexon-solidity-628919f416b224e0cee65aa13c9adbec3825f928.zip |
Fix typo in documentation.
Diffstat (limited to 'docs/solidity-by-example.rst')
-rw-r--r-- | docs/solidity-by-example.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index adf00546..72b3581b 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -907,7 +907,7 @@ Each message includes the following information: * The smart contract's address, used to prevent cross-contract replay attacks. * The total amount of Ether that is owed the recipient so far. -A payment channel is closed just once, at the of a series of transfers. +A payment channel is closed just once, at the end of a series of transfers. Because of this, only one of the messages sent will be redeemed. This is why each message specifies a cumulative total amount of Ether owed, rather than the amount of the individual micropayment. The recipient will naturally choose to |