aboutsummaryrefslogtreecommitdiffstats
path: root/docs/control-structures.rst
diff options
context:
space:
mode:
authorYoichi Hirai <i@yoichihirai.com>2016-10-12 16:46:55 +0800
committerYoichi Hirai <i@yoichihirai.com>2016-10-12 16:46:55 +0800
commit246d91438fcd3f2fe07dab64d2a1ef1c1d01fa61 (patch)
treedbdd0799d138cdf00ccc0d1b6f3beb1c774042e3 /docs/control-structures.rst
parent32c3bd8e78e63a9d3ab61848f9f3d5ef854c0d1f (diff)
downloaddexon-solidity-246d91438fcd3f2fe07dab64d2a1ef1c1d01fa61.tar
dexon-solidity-246d91438fcd3f2fe07dab64d2a1ef1c1d01fa61.tar.gz
dexon-solidity-246d91438fcd3f2fe07dab64d2a1ef1c1d01fa61.tar.bz2
dexon-solidity-246d91438fcd3f2fe07dab64d2a1ef1c1d01fa61.tar.lz
dexon-solidity-246d91438fcd3f2fe07dab64d2a1ef1c1d01fa61.tar.xz
dexon-solidity-246d91438fcd3f2fe07dab64d2a1ef1c1d01fa61.tar.zst
dexon-solidity-246d91438fcd3f2fe07dab64d2a1ef1c1d01fa61.zip
Codify `bytes`
Diffstat (limited to 'docs/control-structures.rst')
-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 820fb280..fa983d87 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -325,7 +325,7 @@ In the following example, we show how ``throw`` can be used to easily revert an
Currently, there are six situations, where exceptions happen automatically in Solidity:
1. If you access an array on a too large or negative index (i.e. ``x[i]`` where ``i >= x.length`` or ``i < 0``).
-2. If you access a fixed-length bytes on a too large or negative index.
+2. If you access a fixed-length ``bytes`` on a too large or negative index.
3. If a function called via a message call does not finish properly (i.e. it runs out of gas, has no matching function, or throws an exception itself), except when a low level operation ``call``, ``send``, ``delegatecall`` or ``callcode`` is used.
4. If a non-existent function on a library is called or Ether is sent to a library.
5. If you divide or modulo by zero (e.g. ``5 / 0`` or ``23 % 0``).