diff options
author | chriseth <c@ethdev.com> | 2016-05-27 22:50:41 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-05-27 22:50:41 +0800 |
commit | 064c3e84bb01a8df13d3c0d9c5bbc7c9452fb8f0 (patch) | |
tree | db99acb5b88b34ef5f3da09f6bf633a89642d4ca /docs | |
parent | 763da962c43d2161d7fdab3d7e9f5faf22b57358 (diff) | |
parent | 0a9c95c53df88d8edecae8409626ed5084deef4b (diff) | |
download | dexon-solidity-064c3e84bb01a8df13d3c0d9c5bbc7c9452fb8f0.tar.gz dexon-solidity-064c3e84bb01a8df13d3c0d9c5bbc7c9452fb8f0.tar.zst dexon-solidity-064c3e84bb01a8df13d3c0d9c5bbc7c9452fb8f0.zip |
Merge pull request #601 from mathvdh/patch-1
Typo correction in solidity-by-example.rst
Diffstat (limited to 'docs')
-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], |