aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMathieu Van der Haegen <mathvdh@gmail.com>2016-05-26 20:43:00 +0800
committerMathieu Van der Haegen <mathvdh@gmail.com>2016-05-26 20:43:00 +0800
commit0a9c95c53df88d8edecae8409626ed5084deef4b (patch)
treeaded268b2c64ba9129489c58b6e7334715568175 /docs
parent3c2056c688fea3254dbafcd6b1840f84ab5d5700 (diff)
downloaddexon-solidity-0a9c95c53df88d8edecae8409626ed5084deef4b.tar
dexon-solidity-0a9c95c53df88d8edecae8409626ed5084deef4b.tar.gz
dexon-solidity-0a9c95c53df88d8edecae8409626ed5084deef4b.tar.bz2
dexon-solidity-0a9c95c53df88d8edecae8409626ed5084deef4b.tar.lz
dexon-solidity-0a9c95c53df88d8edecae8409626ed5084deef4b.tar.xz
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')
-rw-r--r--docs/solidity-by-example.rst2
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],