diff options
author | chriseth <chris@ethereum.org> | 2016-11-21 18:12:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-21 18:12:53 +0800 |
commit | 78e8521be7cbab5a47c986c1d2cb6f670d824545 (patch) | |
tree | 8625de1b208e420d919bc2fc463da194970601b7 | |
parent | afda210afd468ab161a2f0cb01fbab88d12bb120 (diff) | |
parent | cc07a918e320395fced54eef19eb4222d4c452be (diff) | |
download | dexon-solidity-78e8521be7cbab5a47c986c1d2cb6f670d824545.tar.gz dexon-solidity-78e8521be7cbab5a47c986c1d2cb6f670d824545.tar.zst dexon-solidity-78e8521be7cbab5a47c986c1d2cb6f670d824545.zip |
Merge pull request #1398 from ethereum/VoR0220-patch-1
Typo
-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`` |