aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2016-08-08 21:48:15 +0800
committerGitHub <noreply@github.com>2016-08-08 21:48:15 +0800
commitbeb7e0219f0c2b5424c2fc6b3cfc8457a8a671ea (patch)
treeeb03c214350b177d2a8d5aed8357494d4cee6ffb
parentc3ed550eb6040596681107560d682f102c458de7 (diff)
parent0c2e7b7ee047777f5226722bce2ed2369b9f96bd (diff)
downloaddexon-solidity-beb7e0219f0c2b5424c2fc6b3cfc8457a8a671ea.tar.gz
dexon-solidity-beb7e0219f0c2b5424c2fc6b3cfc8457a8a671ea.tar.zst
dexon-solidity-beb7e0219f0c2b5424c2fc6b3cfc8457a8a671ea.zip
Merge pull request #818 from mocamircea/patch-1
Update layout-of-source-files.rst
-rw-r--r--docs/layout-of-source-files.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/layout-of-source-files.rst b/docs/layout-of-source-files.rst
index a0170c5a..8e0901df 100644
--- a/docs/layout-of-source-files.rst
+++ b/docs/layout-of-source-files.rst
@@ -23,7 +23,7 @@ At a global level, you can use import statements of the following form:
import "filename";
-...will import all global symbols from "filename" (and symbols imported there) into the
+This statement imports all global symbols from "filename" (and symbols imported there) into the
current global scope (different than in ES6 but backwards-compatible for Solidity).
::