diff options
author | Alexandre Bezroutchko <abb@gremwell.com> | 2018-02-14 16:49:06 +0800 |
---|---|---|
committer | Alexandre Bezroutchko <abb@gremwell.com> | 2018-02-14 16:49:06 +0800 |
commit | 3804f29a8d0c545a6d2cc1f60f7e5dbf5eb454cc (patch) | |
tree | dcd32e8ebfa1b73957cb170aec600e679ae632b3 /docs/control-structures.rst | |
parent | ef8292c6bb337d3c4b27836da6732b85021d1c5d (diff) | |
download | dexon-solidity-3804f29a8d0c545a6d2cc1f60f7e5dbf5eb454cc.tar.gz dexon-solidity-3804f29a8d0c545a6d2cc1f60f7e5dbf5eb454cc.tar.zst dexon-solidity-3804f29a8d0c545a6d2cc1f60f7e5dbf5eb454cc.zip |
fix a typo
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 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. |