diff options
author | chriseth <chris@ethereum.org> | 2016-11-23 21:55:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-23 21:55:04 +0800 |
commit | b1d2d07e605f514f7ad4aab25b3899d0ddb0d360 (patch) | |
tree | f9e636e4a54fb8078985f7dd6d3f59aea99506f1 /docs | |
parent | ec2e882376908be68b4c6e6a0f64e57b17c417db (diff) | |
parent | 74ab62de14faee75151429449d5d3f524f54ee1e (diff) | |
download | dexon-solidity-b1d2d07e605f514f7ad4aab25b3899d0ddb0d360.tar dexon-solidity-b1d2d07e605f514f7ad4aab25b3899d0ddb0d360.tar.gz dexon-solidity-b1d2d07e605f514f7ad4aab25b3899d0ddb0d360.tar.bz2 dexon-solidity-b1d2d07e605f514f7ad4aab25b3899d0ddb0d360.tar.lz dexon-solidity-b1d2d07e605f514f7ad4aab25b3899d0ddb0d360.tar.xz dexon-solidity-b1d2d07e605f514f7ad4aab25b3899d0ddb0d360.tar.zst dexon-solidity-b1d2d07e605f514f7ad4aab25b3899d0ddb0d360.zip |
Merge pull request #1407 from escull638/patch-1
Fixed spelling mistake in Logs
Diffstat (limited to 'docs')
-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. |