diff options
author | Anders Brownworth <anders-git@evantide.com> | 2017-01-12 02:13:11 +0800 |
---|---|---|
committer | Anders Brownworth <anders-git@evantide.com> | 2017-01-12 02:13:11 +0800 |
commit | 5e29b4cde228b7aab0ae6c22ef4190d26cb58ab8 (patch) | |
tree | 8d3d0bde77d41b1c29f6117e70343437442647a8 /docs/introduction-to-smart-contracts.rst | |
parent | 4f5da2ea147d0e658926676968a0015d44c26cf0 (diff) | |
download | dexon-solidity-5e29b4cde228b7aab0ae6c22ef4190d26cb58ab8.tar.gz dexon-solidity-5e29b4cde228b7aab0ae6c22ef4190d26cb58ab8.tar.zst dexon-solidity-5e29b4cde228b7aab0ae6c22ef4190d26cb58ab8.zip |
Re-word somewhat bumpy sentence to be more clear.
Diffstat (limited to 'docs/introduction-to-smart-contracts.rst')
-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**. |