aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorescull638 <escull638@gmail.com>2016-11-21 19:26:58 +0800
committerGitHub <noreply@github.com>2016-11-21 19:26:58 +0800
commit74ab62de14faee75151429449d5d3f524f54ee1e (patch)
treed768e447ec93ab5064674730eb673c90884d015e
parentaa48008cc72c6f44db2cbd30a1bee522be67ecd8 (diff)
downloaddexon-solidity-74ab62de14faee75151429449d5d3f524f54ee1e.tar.gz
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.rst2
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.