Skip to content

Commit bafa705

Browse files
committed
fixed typo
1 parent f0676ef commit bafa705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting_started/3.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ An attempt to call a macro that was not loaded will raise an error. Note that li
241241

242242
### 3.5.3 import
243243

244-
We use `import` whenever we want to easily access functions or macros from others modules without using the qualified name. For instance, if we want to use the `duplicate` function from `List` several times in a module and we don't want to always type `List.duplicate`, we can simply import it:
244+
We use `import` whenever we want to easily access functions or macros from other modules without using the qualified name. For instance, if we want to use the `duplicate` function from `List` several times in a module and we don't want to always type `List.duplicate`, we can simply import it:
245245

246246
defmodule Math do
247247
import List, only: [duplicate: 2]

0 commit comments

Comments
 (0)