Skip to content

Commit 424a740

Browse files
committed
Avoid confusing note about importing also requiring
1 parent fdc7a97 commit 424a740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting-started/alias-require-and-import.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Note that like the `alias` directive, `require` is also lexically scoped. We wil
9090

9191
## import
9292

93-
We use `import` whenever we want to access functions or macros from other modules without using the fully-qualified name. Note we can only import public functions, as private functions are never accessible externally. `import`ing a module automatically `require`s it.
93+
We use `import` whenever we want to access functions or macros from other modules without using the fully-qualified name. Note we can only import public functions, as private functions are never accessible externally.
9494

9595
For example, if we want to use the `duplicate/2` function from the `List` module several times, we can import it:
9696

0 commit comments

Comments
 (0)