diff options
Diffstat (limited to 'docs/examples/import_export.md')
-rw-r--r-- | docs/examples/import_export.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/import_export.md b/docs/examples/import_export.md index e036f874d..e87980bc7 100644 --- a/docs/examples/import_export.md +++ b/docs/examples/import_export.md @@ -5,10 +5,10 @@ - [import](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import) allows you to include and use modules held elsewhere, on your local file system or remotely. -- Imports are URLs or file system paths +- Imports are URLs or file system paths. - [export](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export) allows you to specify which parts of your module are accessible to users who - import your module + import your module. ## Overview |