aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-06-21 23:12:19 +0800
committerGitHub <noreply@github.com>2016-06-21 23:12:19 +0800
commit957da9803ee4d867742e0bdbb2f0ba58e7135b8c (patch)
tree4082020521395b93c17a179ed15da7cf58c69794
parent263676a259250a7e25830578647e69cbdcec725a (diff)
parent9272c8ab3264bcf938cb87576ed522c51f12d4d8 (diff)
downloaddexon-solidity-957da9803ee4d867742e0bdbb2f0ba58e7135b8c.tar
dexon-solidity-957da9803ee4d867742e0bdbb2f0ba58e7135b8c.tar.gz
dexon-solidity-957da9803ee4d867742e0bdbb2f0ba58e7135b8c.tar.bz2
dexon-solidity-957da9803ee4d867742e0bdbb2f0ba58e7135b8c.tar.lz
dexon-solidity-957da9803ee4d867742e0bdbb2f0ba58e7135b8c.tar.xz
dexon-solidity-957da9803ee4d867742e0bdbb2f0ba58e7135b8c.tar.zst
dexon-solidity-957da9803ee4d867742e0bdbb2f0ba58e7135b8c.zip
Merge pull request #669 from fabioberger/patch-2
Fix two documentation typos
-rw-r--r--docs/contracts.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index c94f8d99..fbcc858d 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -355,7 +355,7 @@ functions matches the given function identifier (or if no data was supplied at
all).
Furthermore, this function is executed whenever the contract receives plain
-Ether (witout data). In such a context, there is very little gas available to
+Ether (without data). In such a context, there is very little gas available to
the function call, so it is important to make fallback functions as cheap as
possible.
@@ -745,7 +745,7 @@ is executed in the context of the calling contract, i.e. ``this`` points to the
calling contract and especially the storage from the calling contract can be
accessed. As a library is an isolated piece of source code, it can only access
state variables of the calling contract if they are explicitly supplied (it
-would have to way to name them, otherwise).
+would have no way to name them, otherwise).
Libraries can be seen as implicit base contracts of the contracts that use them.
They will not be explicitly visible in the inheritance hierarchy, but calls