diff options
author | varunagarwal315 <varunagarwal315@gmail.com> | 2016-11-04 00:55:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-04 00:55:19 +0800 |
commit | 364698255aef1638e8d3e917dfc5a577312e6d07 (patch) | |
tree | d6cd7e3db5554954a4cdf1a1233d846316a9806a /docs/solidity-by-example.rst | |
parent | 38e0b0a5faf75e3392fbfdd371b27db728026853 (diff) | |
download | dexon-solidity-364698255aef1638e8d3e917dfc5a577312e6d07.tar.gz dexon-solidity-364698255aef1638e8d3e917dfc5a577312e6d07.tar.zst dexon-solidity-364698255aef1638e8d3e917dfc5a577312e6d07.zip |
Update solidity-by-example.rst
added the space. Sorry, just slipped my mind.
Diffstat (limited to 'docs/solidity-by-example.rst')
-rw-r--r-- | docs/solidity-by-example.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/solidity-by-example.rst b/docs/solidity-by-example.rst index f5f109fd..915cfa76 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -171,9 +171,9 @@ of votes. } } - //Calls winningProposal() function to get the index - //of the winner contained in the proposals array and then - //returns the name of the winner + // Calls winningProposal() function to get the index + // of the winner contained in the proposals array and then + // returns the name of the winner function winnerName() constant returns (bytes32 winnerName) { |