diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-08-09 01:33:09 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-08-09 01:33:09 +0800 |
commit | 279518a5363366651fa22e50fd5e94b096f34f5a (patch) | |
tree | 2e6bc37e7efb8d4eda52b83a0ce34a78c8a5c9bb /docs/control-structures.rst | |
parent | 838a91b38c0708afbb3112174fea98bce1697c2b (diff) | |
download | dexon-solidity-279518a5363366651fa22e50fd5e94b096f34f5a.tar.gz dexon-solidity-279518a5363366651fa22e50fd5e94b096f34f5a.tar.zst dexon-solidity-279518a5363366651fa22e50fd5e94b096f34f5a.zip |
Add missing s
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 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`` |