aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/assembly.rst2
-rw-r--r--docs/contracts.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assembly.rst b/docs/assembly.rst
index 415bb1a1..30f7fc01 100644
--- a/docs/assembly.rst
+++ b/docs/assembly.rst
@@ -11,7 +11,7 @@ differs from standalone assembly and then specify assembly itself.
TODO: Write about how scoping rules of inline assembly are a bit different
and the complications that arise when for example using internal functions
-of libraries. Furhermore, write about the symbols defined by the compiler.
+of libraries. Furthermore, write about the symbols defined by the compiler.
Inline Assembly
===============
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.