diff --git a/packages/documentation/copy/en/modules-reference/appendices/ESM-CJS-Interop.md b/packages/documentation/copy/en/modules-reference/appendices/ESM-CJS-Interop.md index c807f64da39d..9a24cc5c46b5 100644 --- a/packages/documentation/copy/en/modules-reference/appendices/ESM-CJS-Interop.md +++ b/packages/documentation/copy/en/modules-reference/appendices/ESM-CJS-Interop.md @@ -208,7 +208,7 @@ exports.default = function doSomething() { /*...*/ } import doSomething from "dependency"; // Works after transpilation, but not a function in Node.js ESM: doSomething(); -// Doesn't exist after trasnpilation, but works in Node.js ESM: +// Doesn't exist after transpilation, but works in Node.js ESM: doSomething.default(); ```