aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/layout-of-source-files.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/layout-of-source-files.rst b/docs/layout-of-source-files.rst
index fb18f8a9..9a8bdc3e 100644
--- a/docs/layout-of-source-files.rst
+++ b/docs/layout-of-source-files.rst
@@ -147,6 +147,10 @@ Another syntax is not part of ES6, but probably convenient:
which is equivalent to ``import * as symbolName from "filename";``.
+.. note::
+ If you use `import "filename.sol" as moduleName;`, you access a contract called `C`
+ from inside `"filename.sol"` as `moduleName.C` and not by using `C` directly.
+
Paths
-----