aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-07-27 17:48:38 +0800
committerGitHub <noreply@github.com>2017-07-27 17:48:38 +0800
commit07e0a7e090111dd49e0bb6af96a4036f1bd186ac (patch)
tree4da9aade3f5c4b05ff765473fd8c7f102f8b0b2b /docs
parent16977bab7da2b6f7c37635fbf546f08a74dc9a06 (diff)
parent99b6411853f67354528751b62f92142afb564647 (diff)
downloaddexon-solidity-07e0a7e090111dd49e0bb6af96a4036f1bd186ac.tar
dexon-solidity-07e0a7e090111dd49e0bb6af96a4036f1bd186ac.tar.gz
dexon-solidity-07e0a7e090111dd49e0bb6af96a4036f1bd186ac.tar.bz2
dexon-solidity-07e0a7e090111dd49e0bb6af96a4036f1bd186ac.tar.lz
dexon-solidity-07e0a7e090111dd49e0bb6af96a4036f1bd186ac.tar.xz
dexon-solidity-07e0a7e090111dd49e0bb6af96a4036f1bd186ac.tar.zst
dexon-solidity-07e0a7e090111dd49e0bb6af96a4036f1bd186ac.zip
Merge pull request #2649 from nathanph/patch-1
Fix typo in contracts.rst
Diffstat (limited to 'docs')
-rw-r--r--docs/contracts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 11e674d1..4c3d4059 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -84,7 +84,7 @@ This means that cyclic creation dependencies are impossible.
// State variables are accessed via their name
// and not via e.g. this.owner. This also applies
// to functions and especially in the constructors,
- // you can only call them like that ("internall"),
+ // you can only call them like that ("internally"),
// because the contract itself does not exist yet.
owner = msg.sender;
// We do an explicit type conversion from `address`