diff options
author | Nathan Hernandez <email@nathanph.com> | 2017-07-27 13:46:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-27 13:46:53 +0800 |
commit | 99b6411853f67354528751b62f92142afb564647 (patch) | |
tree | 98332c6e25deef6ac352ea99dc48bdff87347293 | |
parent | 16ca1eea78d476de3fd52ebdd9dcfb6fa5610aa6 (diff) | |
download | dexon-solidity-99b6411853f67354528751b62f92142afb564647.tar.gz dexon-solidity-99b6411853f67354528751b62f92142afb564647.tar.zst dexon-solidity-99b6411853f67354528751b62f92142afb564647.zip |
Fix typo in contracts.rst
Changed `internall` to `internally`.
-rw-r--r-- | docs/contracts.rst | 2 |
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` |