aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-06-16 21:52:56 +0800
committerchriseth <chris@ethereum.org>2017-06-24 01:29:11 +0800
commit64067975e4d06a984fb7b92dcfb7484561c01de3 (patch)
tree17a78893b3585b22476e2fa51b8e4e7d8b453442 /docs
parent7f05ef8acac2cc6ef1df70d31205e72422540272 (diff)
downloaddexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.tar
dexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.tar.gz
dexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.tar.bz2
dexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.tar.lz
dexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.tar.xz
dexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.tar.zst
dexon-solidity-64067975e4d06a984fb7b92dcfb7484561c01de3.zip
Review suggestions.
Diffstat (limited to 'docs')
-rw-r--r--docs/control-structures.rst4
-rw-r--r--docs/units-and-global-variables.rst2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst
index 9b5d21bb..d69d5404 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -376,7 +376,7 @@ series of function calls that will reach a failing assertion. If this is possibl
in your contract you should fix.
There are two other ways to trigger execptions: The ``revert`` function can be used to flag an error and
-revert the current call. In the future, it migt be possible, to also include details about the error
+revert the current call. In the future, it might be possible, to also include details about the error
in a call to ``revert``. The ``throw`` keyword can also be used as an alternative to ``revert()``.
When exceptions happen in a sub-call, they "bubble up" automatically. Exceptions to this rule are ``send``
@@ -430,4 +430,4 @@ Internally, Solidity performs a revert operation (instruction ``0xfd``) for a ``
the EVM to revert all changes made to the state. The reason for reverting is that there is no safe way to continue execution, because an expected effect
did not occur. Because we want to retain the atomicity of transactions, the safest thing to do is to revert all changes and make the whole transaction
(or at least call) without effect. Note that ``assert``-style exceptions consume all gas available to the call, while
-``revert``-style exceptions will not consume any gas starting from the metropolis release. \ No newline at end of file
+``revert``-style exceptions will not consume any gas starting from the Metropolis release. \ No newline at end of file
diff --git a/docs/units-and-global-variables.rst b/docs/units-and-global-variables.rst
index 6d6b21c3..7d21f065 100644
--- a/docs/units-and-global-variables.rst
+++ b/docs/units-and-global-variables.rst
@@ -130,8 +130,8 @@ This means that, for example, ``keccak256(0) == keccak256(uint8(0))`` and
It might be that you run into Out-of-Gas for ``sha256``, ``ripemd160`` or ``ecrecover`` on a *private blockchain*. The reason for this is that those are implemented as so-called precompiled contracts and these contracts only really exist after they received the first message (although their contract code is hardcoded). Messages to non-existing contracts are more expensive and thus the execution runs into an Out-of-Gas error. A workaround for this problem is to first send e.g. 1 Wei to each of the contracts before you use them in your actual contracts. This is not an issue on the official or test net.
-.. _address_related:
.. index:: balance, send, transfer, call, callcode, delegatecall
+.. _address_related:
Address Related
---------------