aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDenton Liu <liu.denton+github@gmail.com>2016-08-10 23:35:18 +0800
committerDenton Liu <liu.denton+github@gmail.com>2016-08-11 23:10:47 +0800
commitf2389b33143c81b535aecd2fdcdb1f4ea916f951 (patch)
treede80ea752d99129b1189c805234bd94c7bb8dd0f /docs
parente4f9e1f78824966ff130561ff414a6386d456dbb (diff)
downloaddexon-solidity-f2389b33143c81b535aecd2fdcdb1f4ea916f951.tar
dexon-solidity-f2389b33143c81b535aecd2fdcdb1f4ea916f951.tar.gz
dexon-solidity-f2389b33143c81b535aecd2fdcdb1f4ea916f951.tar.bz2
dexon-solidity-f2389b33143c81b535aecd2fdcdb1f4ea916f951.tar.lz
dexon-solidity-f2389b33143c81b535aecd2fdcdb1f4ea916f951.tar.xz
dexon-solidity-f2389b33143c81b535aecd2fdcdb1f4ea916f951.tar.zst
dexon-solidity-f2389b33143c81b535aecd2fdcdb1f4ea916f951.zip
Change i.e. to e.g.
Diffstat (limited to 'docs')
-rw-r--r--docs/control-structures.rst2
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:``