diff options
author | Mathieu Van der Haegen <mathvdh@gmail.com> | 2016-05-26 20:43:00 +0800 |
---|---|---|
committer | Mathieu Van der Haegen <mathvdh@gmail.com> | 2016-05-26 20:43:00 +0800 |
commit | 0a9c95c53df88d8edecae8409626ed5084deef4b (patch) | |
tree | aded268b2c64ba9129489c58b6e7334715568175 /docs/solidity-by-example.rst | |
parent | 3c2056c688fea3254dbafcd6b1840f84ab5d5700 (diff) | |
download | dexon-solidity-0a9c95c53df88d8edecae8409626ed5084deef4b.tar.gz dexon-solidity-0a9c95c53df88d8edecae8409626ed5084deef4b.tar.zst dexon-solidity-0a9c95c53df88d8edecae8409626ed5084deef4b.zip |
Typo correction in solidity-by-example.rst
Just correcting a simple typo in the comments of the code
Diffstat (limited to 'docs/solidity-by-example.rst')
-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 6aa072e3..12c02eb9 100644 --- a/docs/solidity-by-example.rst +++ b/docs/solidity-by-example.rst @@ -76,7 +76,7 @@ of votes. // to the end of the array. for (uint i = 0; i < proposalNames.length; i++) { // `Proposal({...})` creates a temporary - // Proposal object and `proposal.push(...)` + // Proposal object and `proposals.push(...)` // appends it to the end of `proposals`. proposals.push(Proposal({ name: proposalNames[i], |