From 3125c72e09494c53d6f9479ccdc2608e526b8a9d Mon Sep 17 00:00:00 2001 From: J Bruni Date: Mon, 24 Jan 2022 07:31:55 -0300 Subject: [PATCH] docs(esm): fix typo (#2866) --- docs/content/2.concepts/4.esm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/2.concepts/4.esm.md b/docs/content/2.concepts/4.esm.md index 54f811a6cb..925ed08e02 100644 --- a/docs/content/2.concepts/4.esm.md +++ b/docs/content/2.concepts/4.esm.md @@ -183,7 +183,7 @@ Also when using dynamic import syntax (in both CJS and ESM files), we always hav import('cjs-pkg').then(console.log) // [Module: null prototype] { default: { test: '123' } } ``` -In this case, we need to manually inerop default export: +In this case, we need to manually interop the default export: ```js // Static import