diff options
author | Denton Liu <Denton-L@users.noreply.github.com> | 2016-05-06 01:28:45 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-05-06 02:05:51 +0800 |
commit | 6c3e78a3d842ad0bbb9ab73010df8507ccf09047 (patch) | |
tree | 1fa1b69e73f7096781e840fe8acb2f1c1225a1c4 | |
parent | 768b7786159619479e0dcb494f156d567c08eea0 (diff) | |
download | dexon-solidity-6c3e78a3d842ad0bbb9ab73010df8507ccf09047.tar.gz dexon-solidity-6c3e78a3d842ad0bbb9ab73010df8507ccf09047.tar.zst dexon-solidity-6c3e78a3d842ad0bbb9ab73010df8507ccf09047.zip |
Update structure-of-a-contract.rst
Changed a non-space whitespace character to a space
-rw-r--r-- | docs/structure-of-a-contract.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/structure-of-a-contract.rst b/docs/structure-of-a-contract.rst index 2e121847..0968ffc8 100644 --- a/docs/structure-of-a-contract.rst +++ b/docs/structure-of-a-contract.rst @@ -80,7 +80,7 @@ Events are convenience interfaces with the EVM logging facilities. :: - contract SimpleAuction { + contract SimpleAuction { event HighestBidIncreased(address bidder, uint amount); // Event function bid() { |