diff options
author | chriseth <chris@ethereum.org> | 2018-08-15 16:42:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-15 16:42:38 +0800 |
commit | 3c5226cefb9f883277530decedc08e2e48ed3050 (patch) | |
tree | 4f560d87061e87f52e064e71ce52a28725924553 /docs | |
parent | 2946b7cdc50e4a75aebf781570a03df154d2e4ab (diff) | |
parent | 628919f416b224e0cee65aa13c9adbec3825f928 (diff) | |
download | dexon-solidity-3c5226cefb9f883277530decedc08e2e48ed3050.tar.gz dexon-solidity-3c5226cefb9f883277530decedc08e2e48ed3050.tar.zst dexon-solidity-3c5226cefb9f883277530decedc08e2e48ed3050.zip |
Merge pull request #4817 from crypto-jeronimo/fix-typo-in-docs
Fix typo in documentation.
Diffstat (limited to 'docs')
-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 |