aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-03-16 19:20:39 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-03-16 19:20:39 +0800
commitb053b6164e3104413cd0d4ce301f56a0914757cc (patch)
tree0b262846eb2b3d108ccb6ce22f3b17c3b5442094
parent42f2623cd3650437860604b7bb7117037416e1bb (diff)
downloaddexon-solidity-b053b6164e3104413cd0d4ce301f56a0914757cc.tar.gz
dexon-solidity-b053b6164e3104413cd0d4ce301f56a0914757cc.tar.zst
dexon-solidity-b053b6164e3104413cd0d4ce301f56a0914757cc.zip
Fix typo (recieve to receive)
-rw-r--r--docs/common-patterns.rst2
-rw-r--r--docs/contracts.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/common-patterns.rst b/docs/common-patterns.rst
index a2d7ce71..5fa84242 100644
--- a/docs/common-patterns.rst
+++ b/docs/common-patterns.rst
@@ -23,7 +23,7 @@ contract in order to become the "richest", inspired by
`King of the Ether <https://www.kingoftheether.com/>`_.
In the following contract, if you are usurped as the richest,
-you will recieve the funds of the person who has gone on to
+you will receive the funds of the person who has gone on to
become the new richest.
::
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 9145f016..2ee04675 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -1101,7 +1101,7 @@ Restrictions for libraries in comparison to contracts:
- No state variables
- Cannot inherit nor be inherited
-- Cannot recieve Ether
+- Cannot receive Ether
(These might be lifted at a later point.)