From 2a0142479771ede368aab6829c40f18c49afa5f5 Mon Sep 17 00:00:00 2001 From: Peter Roche <46547072+paroche@users.noreply.github.com> Date: Thu, 9 Apr 2020 23:27:23 -0600 Subject: [PATCH] chapter -> article (3x) --- 1-js/13-modules/02-import-export/article.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/1-js/13-modules/02-import-export/article.md b/1-js/13-modules/02-import-export/article.md index 4fe5322f..e75c45b1 100644 --- a/1-js/13-modules/02-import-export/article.md +++ b/1-js/13-modules/02-import-export/article.md @@ -2,7 +2,7 @@ Export and import directives have several syntax variants. -In the previous chapter we saw a simple use, now let's explore more examples. +In the previous article we saw a simple use, now let's explore more examples. ## Export before declarations @@ -403,7 +403,7 @@ Such oddities of re-exporting the default export are one of the reasons why some ## Summary -Here are all types of `export` that we covered in this and previous chapters. +Here are all types of `export` that we covered in this and previous articles. You can check yourself by reading them and recalling what they mean: @@ -452,4 +452,4 @@ if (something) { ...But what if we really need to import something conditionally? Or at the right time? Like, load a module upon request, when it's really needed? -We'll see dynamic imports in the next chapter. +We'll see dynamic imports in the next article.