diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-07-11 23:23:17 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-10 22:42:51 +0800 |
commit | a6c9d85399d39548abcb7b0739849efab7647c52 (patch) | |
tree | d1da2b16614ee0d8b9132b80c3c300eb167ca9e0 /docs/solidity-by-example.rst | |
parent | 617daa1f004dba9960c0de57109d5b1554a9f599 (diff) | |
download | dexon-solidity-a6c9d85399d39548abcb7b0739849efab7647c52.tar.gz dexon-solidity-a6c9d85399d39548abcb7b0739849efab7647c52.tar.zst dexon-solidity-a6c9d85399d39548abcb7b0739849efab7647c52.zip |
Remove trailing whitespace
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 e68ce448..86d6f72b 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -271,7 +271,7 @@ activate themselves. // highestBidder.send(highestBid) is a security risk // because it can be prevented by the caller by e.g. // raising the call stack to 1023. It is always safer - // to let the recipient withdraw their money themselves. + // to let the recipient withdraw their money themselves. pendingReturns[highestBidder] += highestBid; } highestBidder = msg.sender; |