diff options
author | chriseth <chris@ethereum.org> | 2016-08-12 21:20:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-12 21:20:02 +0800 |
commit | c389f894b569dda3841cb0d076e28b8fa5725bf7 (patch) | |
tree | ea58f8e27ab9685e93ba910d52a3cee48ca82544 /docs/control-structures.rst | |
parent | 04db7b0e525431b4f51f4a13506e85b47451ba7b (diff) | |
parent | 1634a79bd8ecfe2445bef7a9af26887aa638c15e (diff) | |
download | dexon-solidity-c389f894b569dda3841cb0d076e28b8fa5725bf7.tar dexon-solidity-c389f894b569dda3841cb0d076e28b8fa5725bf7.tar.gz dexon-solidity-c389f894b569dda3841cb0d076e28b8fa5725bf7.tar.bz2 dexon-solidity-c389f894b569dda3841cb0d076e28b8fa5725bf7.tar.lz dexon-solidity-c389f894b569dda3841cb0d076e28b8fa5725bf7.tar.xz dexon-solidity-c389f894b569dda3841cb0d076e28b8fa5725bf7.tar.zst dexon-solidity-c389f894b569dda3841cb0d076e28b8fa5725bf7.zip |
Merge pull request #858 from Denton-L/quotes-docs
Document existence of single-quotes
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 2f131c55..e03d8d6a 100644 --- a/docs/control-structures.rst +++ b/docs/control-structures.rst @@ -337,7 +337,7 @@ Inline assembly parses comments, literals and identifiers exactly as Solidity, s usual ``//`` and ``/* */`` comments. Inline assembly is initiated by ``assembly { ... }`` and inside these curly braces, the following can be used (see the later sections for more details) - - literals, i.e. ``0x123``, ``42`` or ``"abc"`` (strings up to 32 characters) + - 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))`` - labels, e.g. ``name:`` |