From a0c07342ad785e3e59fbb0c1be13bfa8a648d6d3 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 2 Mar 2019 23:48:12 +0300 Subject: [PATCH] import.meta --- 1-js/10-modules/01-modules-intro/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/10-modules/01-modules-intro/article.md b/1-js/10-modules/01-modules-intro/article.md index 6ff3ad97..749997e3 100644 --- a/1-js/10-modules/01-modules-intro/article.md +++ b/1-js/10-modules/01-modules-intro/article.md @@ -345,4 +345,4 @@ To summarize, the core concepts are: 4. Module code is executed only once. Exports are created once and shared between importers. 5. In production, we usually use bundlers such as [Webpack](https://webpack.js.org) to bundle modules together. -In the next chapter we'll see more examples of modules and `export/import` statements. +In the next chapter we'll see more examples of modules and versatile `export/import` statements.