aboutsummaryrefslogtreecommitdiffstats
path: root/docs/control-structures.rst
diff options
context:
space:
mode:
authorCryptomental <cryptomental.com@gmail.com>2018-07-10 15:17:33 +0800
committerCryptomental <cryptomental.com@gmail.com>2018-07-11 04:57:59 +0800
commiteb92d5f760995aef4c79fcaa3f8c2437718ffc7f (patch)
treecef370944f927172225a767a472afe75a626a349 /docs/control-structures.rst
parentd454cec1bd8c95d0ab850a199bf9696dcebe14a5 (diff)
downloaddexon-solidity-eb92d5f760995aef4c79fcaa3f8c2437718ffc7f.tar.gz
dexon-solidity-eb92d5f760995aef4c79fcaa3f8c2437718ffc7f.tar.zst
dexon-solidity-eb92d5f760995aef4c79fcaa3f8c2437718ffc7f.zip
docs: Fix typos.
Used codespell and manual fixes. Refs: #4442
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r--docs/control-structures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst
index 7beca65e..50c401e2 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -39,7 +39,7 @@ write::
pragma solidity ^0.4.16;
contract Simple {
- function arithmetics(uint _a, uint _b)
+ function arithmetic(uint _a, uint _b)
public
pure
returns (uint o_sum, uint o_product)