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