Skip to content

Commit b826507

Browse files
authored
Docs: Update create-and-import-modules.md (#28)
1 parent 7f06e4c commit b826507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/create-and-import-modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ In Python, all variables, functions, classes, and other members that can be acce
7272

7373
Feature | JavaScript | Python
7474
--- | --- | ---
75-
Import module | `import foo from 'module'` | `import foo`
75+
Import module | `import foo from 'module'` | `import module`
7676
Import specific members from module | `import { foo, bar } from 'module'` | `from module import foo, bar`
7777
Import module with alias | `import { foo as alias } from 'module'` | `from module import foo as alias`
7878
Import entire module with alias | `import * as alias from 'module'` | `import module as alias`

0 commit comments

Comments
 (0)