aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-09 20:06:01 +0800
committerGitHub <noreply@github.com>2017-08-09 20:06:01 +0800
commit81b1ecb7be4218f3d5b6e5a5376bba73d4caf146 (patch)
tree31a365f1d7e6b950f6a77168fd013a0f97478ee1
parent81887bc7ebb0ab55811fb9cfd5607af79a6fdaa8 (diff)
parent79137e4703de2ee00d472e863eafe877fb1528e5 (diff)
downloaddexon-solidity-81b1ecb7be4218f3d5b6e5a5376bba73d4caf146.tar.gz
dexon-solidity-81b1ecb7be4218f3d5b6e5a5376bba73d4caf146.tar.zst
dexon-solidity-81b1ecb7be4218f3d5b6e5a5376bba73d4caf146.zip
Merge pull request #2717 from vladislav-ankudinov/patch-1
fix typo 'onte' -> 'onto'
-rw-r--r--docs/assembly.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/assembly.rst b/docs/assembly.rst
index 4e665b7e..2f5b8812 100644
--- a/docs/assembly.rst
+++ b/docs/assembly.rst
@@ -125,7 +125,7 @@ following list can be used as a reference of its opcodes.
If an opcode takes arguments (always from the top of the stack), they are given in parentheses.
Note that the order of arguments can be seen to be reversed in non-functional style (explained below).
Opcodes marked with ``-`` do not push an item onto the stack, those marked with ``*`` are
-special and all others push exactly one item onte the stack.
+special and all others push exactly one item onto the stack.
In the following, ``mem[a...b)`` signifies the bytes of memory starting at position ``a`` up to
(excluding) position ``b`` and ``storage[p]`` signifies the storage contents at position ``p``.