aboutsummaryrefslogtreecommitdiffstats
path: root/docs/contracts.rst
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-06-21 23:52:35 +0800
committerGitHub <noreply@github.com>2016-06-21 23:52:35 +0800
commitb23c30079283095e54eb9678a88dda95d895dd6e (patch)
tree97ea3b8ef97aef1a262b9d83b406b2c67a36ba91 /docs/contracts.rst
parent00c89cdb49f3dea0d9a4eee9d494d96acdd6b8ea (diff)
parent6aa069403a3c865569d7fb38b99eab95f9ecbce4 (diff)
downloaddexon-solidity-b23c30079283095e54eb9678a88dda95d895dd6e.tar
dexon-solidity-b23c30079283095e54eb9678a88dda95d895dd6e.tar.gz
dexon-solidity-b23c30079283095e54eb9678a88dda95d895dd6e.tar.bz2
dexon-solidity-b23c30079283095e54eb9678a88dda95d895dd6e.tar.lz
dexon-solidity-b23c30079283095e54eb9678a88dda95d895dd6e.tar.xz
dexon-solidity-b23c30079283095e54eb9678a88dda95d895dd6e.tar.zst
dexon-solidity-b23c30079283095e54eb9678a88dda95d895dd6e.zip
Merge pull request #658 from graup/graup-patch-1
Fix typo in Libraries section
Diffstat (limited to 'docs/contracts.rst')
-rw-r--r--docs/contracts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index fbcc858d..190750f9 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -742,7 +742,7 @@ only once at a specific address and their code is reused using the ``DELEGATECAL
(``CALLCODE`` until Homestead)
feature of the EVM. This means that if library functions are called, their code
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
+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 no way to name them, otherwise).