diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/layout-of-source-files.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/layout-of-source-files.rst b/docs/layout-of-source-files.rst index 0d2970d4..ef6fd656 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). :: @@ -44,7 +44,7 @@ Another syntax is not part of ES6, but probably convenient: import "filename" as symbolName; -...is equivalent to ``import * as symbolName from "filename";``. +which is equivalent to ``import * as symbolName from "filename";``. Paths ----- |