From 2204c597fb8dbdfa5fbe909769e7e1834f2af5f5 Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Fri, 5 Aug 2016 11:59:10 -0400 Subject: Fix typo --- docs/control-structures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 9d7ebeac..9d3e26eb 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -354,7 +354,7 @@ This document does not want to be a full description of the Ethereum virtual mac 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 seed to be reversed in non-functional style (explained below). +Note that the order of arguments can seem 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. -- cgit v1.2.3 From 838a91b38c0708afbb3112174fea98bce1697c2b Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Mon, 8 Aug 2016 13:30:30 -0400 Subject: Refix typo --- docs/control-structures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 9d3e26eb..97c00311 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -354,7 +354,7 @@ This document does not want to be a full description of the Ethereum virtual mac 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 seem to be reversed in non-functional style (explained below). +Note that the order of arguments can be seen as being reversed compared to the instructional 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. -- cgit v1.2.3 From 279518a5363366651fa22e50fd5e94b096f34f5a Mon Sep 17 00:00:00 2001 From: Denton Liu Date: Mon, 8 Aug 2016 13:33:09 -0400 Subject: Add missing s --- docs/control-structures.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 97c00311..2f131c55 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -339,7 +339,7 @@ these curly braces, the following can be used (see the later sections for more d - literals, i.e. ``0x123``, ``42`` or ``"abc"`` (strings up to 32 characters) - opcodes (in "instruction style"), e.g. ``mload sload dup1 sstore``, for a list see below - - opcode in functional style, e.g. ``add(1, mlod(0))`` + - opcodes in functional style, e.g. ``add(1, mlod(0))`` - labels, e.g. ``name:`` - variable declarations, e.g. ``let x := 7`` or ``let x := add(y, 3)`` - identifiers (externals, labels or assembly-local variables), e.g. ``jump(name)``, ``3 x add`` -- cgit v1.2.3