aboutsummaryrefslogtreecommitdiffstats
path: root/docs/style-guide.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/style-guide.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/style-guide.rst')
-rw-r--r--docs/style-guide.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/style-guide.rst b/docs/style-guide.rst
index 8311e925..19e3aae5 100644
--- a/docs/style-guide.rst
+++ b/docs/style-guide.rst
@@ -188,8 +188,8 @@ Event Definitions and Event Emitters
Yes::
event LongAndLotsOfArgs(
- adress sender,
- adress recipient,
+ address sender,
+ address recipient,
uint256 publicKey,
uint256 amount,
bytes32[] options
@@ -205,8 +205,8 @@ Yes::
No::
- event LongAndLotsOfArgs(adress sender,
- adress recipient,
+ event LongAndLotsOfArgs(address sender,
+ address recipient,
uint256 publicKey,
uint256 amount,
bytes32[] options);
@@ -830,7 +830,7 @@ The naming recommendations given here are intended to improve the readability,
and thus they are not rules, but rather guidelines to try and help convey the
most information through the names of things.
-Lastly, consistency within a codebase should always supercede any conventions
+Lastly, consistency within a codebase should always supersede any conventions
outlined in this document.