aboutsummaryrefslogtreecommitdiffstats
path: root/docs/structure-of-a-contract.rst
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-05-07 01:03:28 +0800
committerchriseth <c@ethdev.com>2016-05-07 01:03:28 +0800
commit9e36bdda8a9552f1885e0a63a85db588623b39b2 (patch)
tree212d5c4d91481ead4d223eb6f7bfc4df1c7e8d02 /docs/structure-of-a-contract.rst
parent1b7e2d3068a8870b6d5ebb231cb611d01b4adfc8 (diff)
parent7f940e498e99346e7d9afa47e773dcd7ea9ebd18 (diff)
downloaddexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.tar
dexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.tar.gz
dexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.tar.bz2
dexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.tar.lz
dexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.tar.xz
dexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.tar.zst
dexon-solidity-9e36bdda8a9552f1885e0a63a85db588623b39b2.zip
Merge pull request #541 from Denton-L/develop
Minor Documentation Changes
Diffstat (limited to 'docs/structure-of-a-contract.rst')
-rw-r--r--docs/structure-of-a-contract.rst2
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() {