diff options
author | chriseth <chris@ethereum.org> | 2017-01-12 18:42:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-12 18:42:46 +0800 |
commit | b983c7492f7c22a441ef360809085ab2a00150c0 (patch) | |
tree | 86855818f3552f96bbd8d51f94b25d0e6b7a0a80 /docs | |
parent | fa157883f528898cee56762f00c15decd3244722 (diff) | |
parent | 5e29b4cde228b7aab0ae6c22ef4190d26cb58ab8 (diff) | |
download | dexon-solidity-b983c7492f7c22a441ef360809085ab2a00150c0.tar dexon-solidity-b983c7492f7c22a441ef360809085ab2a00150c0.tar.gz dexon-solidity-b983c7492f7c22a441ef360809085ab2a00150c0.tar.bz2 dexon-solidity-b983c7492f7c22a441ef360809085ab2a00150c0.tar.lz dexon-solidity-b983c7492f7c22a441ef360809085ab2a00150c0.tar.xz dexon-solidity-b983c7492f7c22a441ef360809085ab2a00150c0.tar.zst dexon-solidity-b983c7492f7c22a441ef360809085ab2a00150c0.zip |
Merge pull request #1558 from anders94/doc-rewording
Re-wording for Clarity
Diffstat (limited to 'docs')
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index aee1e03b..4c134abc 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -283,8 +283,8 @@ determined at the time the contract is created (it is derived from the creator address and the number of transactions sent from that address, the so-called "nonce"). -Apart from the fact whether an account stores code or not, -the EVM treats the two types equally, though. +Regardless of whether or not the account stores code, the two types are +treated equally by the EVM. Every account has a persistent key-value store mapping 256-bit words to 256-bit words called **storage**. |