diff options
author | chriseth <chris@ethereum.org> | 2017-05-17 20:28:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-17 20:28:55 +0800 |
commit | b923196a85dccbc1aed835f19b06d539c483beb1 (patch) | |
tree | 5f04dcda5803ba275f86488b977a2c04110358fb /docs | |
parent | 2d8b866b59af75664e8b81b5a13a103c43123d97 (diff) | |
parent | a0d0776bbc2c8b9e0d9dc2a275e2ff30587810ff (diff) | |
download | dexon-solidity-b923196a85dccbc1aed835f19b06d539c483beb1.tar.gz 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.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); } } |