aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-05-17 17:20:46 +0800
committerGitHub <noreply@github.com>2017-05-17 17:20:46 +0800
commita0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff (patch)
tree1de7f6ef3b720280a0e72e89701fb0a54865f671
parentd9b5ff0b43b4dcaccb43dfc89efef6d610476557 (diff)
downloaddexon-solidity-a0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff.tar.gz
dexon-solidity-a0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff.tar.zst
dexon-solidity-a0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff.zip
Fix typo.
Fixes #2273
-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 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);
}
}