diff options
author | Cryptomental <cryptomental.com@gmail.com> | 2018-07-10 15:17:33 +0800 |
---|---|---|
committer | Cryptomental <cryptomental.com@gmail.com> | 2018-07-11 04:57:59 +0800 |
commit | eb92d5f760995aef4c79fcaa3f8c2437718ffc7f (patch) | |
tree | cef370944f927172225a767a472afe75a626a349 /docs/control-structures.rst | |
parent | d454cec1bd8c95d0ab850a199bf9696dcebe14a5 (diff) | |
download | dexon-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.rst | 2 |
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) |