aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-02-14 19:54:38 +0800
committerGitHub <noreply@github.com>2018-02-14 19:54:38 +0800
commit2de50cb97014010e8814e9b3c2d90b117739aa50 (patch)
tree5fd4c2a2be7cb428047813ea867f1fa7bc3544e2
parentbb3b327c9aeb254fdbc56d76d7126117c0a356d6 (diff)
parent3804f29a8d0c545a6d2cc1f60f7e5dbf5eb454cc (diff)
downloaddexon-solidity-2de50cb97014010e8814e9b3c2d90b117739aa50.tar
dexon-solidity-2de50cb97014010e8814e9b3c2d90b117739aa50.tar.gz
dexon-solidity-2de50cb97014010e8814e9b3c2d90b117739aa50.tar.bz2
dexon-solidity-2de50cb97014010e8814e9b3c2d90b117739aa50.tar.lz
dexon-solidity-2de50cb97014010e8814e9b3c2d90b117739aa50.tar.xz
dexon-solidity-2de50cb97014010e8814e9b3c2d90b117739aa50.tar.zst
dexon-solidity-2de50cb97014010e8814e9b3c2d90b117739aa50.zip
Merge pull request #3508 from abbbe/docs-fix-typo-20180214
fix a typo
-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 1a8ee25b..7be92cfa 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -407,7 +407,7 @@ and the low-level functions ``call``, ``delegatecall`` and ``callcode`` -- those
of an exception instead of "bubbling up".
.. warning::
- The low-level ``call``, ``delegatecall`` and ``callcode`` will return success if the calling account is non-existent, as part of the design of EVM. Existence must be checked prior to calling if desired.
+ The low-level ``call``, ``delegatecall`` and ``callcode`` will return success if the called account is non-existent, as part of the design of EVM. Existence must be checked prior to calling if desired.
Catching exceptions is not yet possible.