aboutsummaryrefslogtreecommitdiffstats
path: root/docs/solidity-by-example.rst
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-07-11 23:23:17 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-08-10 22:42:51 +0800
commita6c9d85399d39548abcb7b0739849efab7647c52 (patch)
treed1da2b16614ee0d8b9132b80c3c300eb167ca9e0 /docs/solidity-by-example.rst
parent617daa1f004dba9960c0de57109d5b1554a9f599 (diff)
downloaddexon-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.rst2
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;