aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-05-17 20:28:55 +0800
committerGitHub <noreply@github.com>2017-05-17 20:28:55 +0800
commitb923196a85dccbc1aed835f19b06d539c483beb1 (patch)
tree5f04dcda5803ba275f86488b977a2c04110358fb /docs
parent2d8b866b59af75664e8b81b5a13a103c43123d97 (diff)
parenta0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff (diff)
downloaddexon-solidity-b923196a85dccbc1aed835f19b06d539c483beb1.tar
dexon-solidity-b923196a85dccbc1aed835f19b06d539c483beb1.tar.gz
dexon-solidity-b923196a85dccbc1aed835f19b06d539c483beb1.tar.bz2
dexon-solidity-b923196a85dccbc1aed835f19b06d539c483beb1.tar.lz
dexon-solidity-b923196a85dccbc1aed835f19b06d539c483beb1.tar.xz
dexon-solidity-b923196a85dccbc1aed835f19b06d539c483beb1.tar.zst
dexon-solidity-b923196a85dccbc1aed835f19b06d539c483beb1.zip
Merge pull request #2277 from ethereum/chriseth-patch-1
Fix typo.
Diffstat (limited to 'docs')
-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);
}
}