From 0a9c95c53df88d8edecae8409626ed5084deef4b Mon Sep 17 00:00:00 2001 From: Mathieu Van der Haegen Date: Thu, 26 May 2016 14:43:00 +0200 Subject: Typo correction in solidity-by-example.rst Just correcting a simple typo in the comments of the code --- docs/solidity-by-example.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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], -- cgit v1.2.3