Typo correction in solidity-by-example.rst

Just correcting a simple typo in the comments of the code
This commit is contained in:
Mathieu Van der Haegen 2016-05-26 14:43:00 +02:00
parent 3c2056c688
commit 0a9c95c53d

View File

@ -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],