aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-03-27 17:15:25 +0800
committerGitHub <noreply@github.com>2017-03-27 17:15:25 +0800
commit9d769a567d750049efa35b1c7ae44af6b5da889d (patch)
treee4613a6f4f9c96e26ab2cd9319d8773e33f6e5c9 /docs
parent74d7c513895d28c9746f09d802069809030f2b97 (diff)
parentca3ceb4de21892e361657eb546fca0eb7b1aa4e6 (diff)
downloaddexon-solidity-9d769a567d750049efa35b1c7ae44af6b5da889d.tar.gz
dexon-solidity-9d769a567d750049efa35b1c7ae44af6b5da889d.tar.zst
dexon-solidity-9d769a567d750049efa35b1c7ae44af6b5da889d.zip
Merge pull request #2088 from chchmatt/patch-1
Fix typo in documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/contracts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 28c003bd..9e35be84 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -436,7 +436,7 @@ execution data (``msg.gas``) or make calls to external contracts are disallowed.
that might have a side-effect on memory allocation are allowed, but those that
might have a side-effect on other memory objects are not. The built-in functions
``keccak256``, ``sha256``, ``ripemd160``, ``ecrecover``, ``addmod`` and ``mulmod``
-are allowed (ever though they do call external contracts).
+are allowed (even though they do call external contracts).
The reason behind allowing side-effects on the memory allocator is that it
should be possible to construct complex objects like e.g. lookup-tables.