diff options
author | chriseth <chris@ethereum.org> | 2017-05-17 17:20:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-17 17:20:46 +0800 |
commit | a0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff (patch) | |
tree | 1de7f6ef3b720280a0e72e89701fb0a54865f671 /docs | |
parent | d9b5ff0b43b4dcaccb43dfc89efef6d610476557 (diff) | |
download | dexon-solidity-a0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff.tar.gz dexon-solidity-a0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff.tar.zst dexon-solidity-a0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff.zip |
Fix typo.
Fixes #2273
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 4ed474df..ab3f375e 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -612,7 +612,7 @@ Safe Remote Purchase // block the refund - the withdraw pattern should be used. buyer.transfer(value); - seller.transfer(this.balance)); + seller.transfer(this.balance); } } |