diff options
author | escull638 <escull638@gmail.com> | 2016-11-21 19:26:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-21 19:26:58 +0800 |
commit | 74ab62de14faee75151429449d5d3f524f54ee1e (patch) | |
tree | d768e447ec93ab5064674730eb673c90884d015e | |
parent | aa48008cc72c6f44db2cbd30a1bee522be67ecd8 (diff) | |
download | dexon-solidity-74ab62de14faee75151429449d5d3f524f54ee1e.tar dexon-solidity-74ab62de14faee75151429449d5d3f524f54ee1e.tar.gz dexon-solidity-74ab62de14faee75151429449d5d3f524f54ee1e.tar.bz2 dexon-solidity-74ab62de14faee75151429449d5d3f524f54ee1e.tar.lz dexon-solidity-74ab62de14faee75151429449d5d3f524f54ee1e.tar.xz dexon-solidity-74ab62de14faee75151429449d5d3f524f54ee1e.tar.zst dexon-solidity-74ab62de14faee75151429449d5d3f524f54ee1e.zip |
Fixed spelling mistake in Logs
Changed 'maps all they way up to the block level' to 'maps all the way up to the block level'.
-rw-r--r-- | docs/introduction-to-smart-contracts.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/introduction-to-smart-contracts.rst b/docs/introduction-to-smart-contracts.rst index 4a3de441..aee1e03b 100644 --- a/docs/introduction-to-smart-contracts.rst +++ b/docs/introduction-to-smart-contracts.rst @@ -433,7 +433,7 @@ Logs ==== It is possible to store data in a specially indexed data structure -that maps all they way up to the block level. This feature called **logs** +that maps all the way up to the block level. This feature called **logs** is used by Solidity in order to implement **events**. Contracts cannot access log data after it has been created, but they can be efficiently accessed from outside the blockchain. |