diff options
author | RJ <rj@erisindustries.com> | 2016-11-19 02:34:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-19 02:34:43 +0800 |
commit | cc07a918e320395fced54eef19eb4222d4c452be (patch) | |
tree | 6377b308e12c052c1cd56ed6a0d6174154a7704a /docs/control-structures.rst | |
parent | b46a14f4a8e128c08336763abf8bbf7c111f464d (diff) | |
download | dexon-solidity-cc07a918e320395fced54eef19eb4222d4c452be.tar dexon-solidity-cc07a918e320395fced54eef19eb4222d4c452be.tar.gz dexon-solidity-cc07a918e320395fced54eef19eb4222d4c452be.tar.bz2 dexon-solidity-cc07a918e320395fced54eef19eb4222d4c452be.tar.lz dexon-solidity-cc07a918e320395fced54eef19eb4222d4c452be.tar.xz dexon-solidity-cc07a918e320395fced54eef19eb4222d4c452be.tar.zst dexon-solidity-cc07a918e320395fced54eef19eb4222d4c452be.zip |
Typo
Diffstat (limited to 'docs/control-structures.rst')
-rw-r--r-- | docs/control-structures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst index 7e1c690d..f57e7936 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -427,7 +427,7 @@ these curly braces, the following can be used (see the later sections for more d - literals, e.g. ``0x123``, ``42`` or ``"abc"`` (strings up to 32 characters) - opcodes (in "instruction style"), e.g. ``mload sload dup1 sstore``, for a list see below - - opcodes in functional style, e.g. ``add(1, mlod(0))`` + - opcodes in functional style, e.g. ``add(1, mload(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`` |