From cf33b67042d72df14e41f6688695ef833467f7f7 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Mon, 24 May 2021 12:00:52 +0300 Subject: [PATCH] minor fixes --- 1-js/13-modules/01-modules-intro/article.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/1-js/13-modules/01-modules-intro/article.md b/1-js/13-modules/01-modules-intro/article.md index 244df5fb..7dc65a76 100644 --- a/1-js/13-modules/01-modules-intro/article.md +++ b/1-js/13-modules/01-modules-intro/article.md @@ -230,11 +230,12 @@ sayHi(); // Ready to serve, *!*Pete*/!*! The object `import.meta` contains the information about the current module. -Its content depends on the environment. In the browser, it contains the url of the script, or a current webpage url if inside HTML: +Its content depends on the environment. In the browser, it contains the URL of the script, or a current webpage URL if inside HTML: ```html run height=0 ```