Skip to content

Commit 546330e

Browse files
committed
correct typos
1 parent 87ed20b commit 546330e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/emitter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2642,7 +2642,7 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
26422642
writeLine();
26432643
emitStart(node);
26442644

2645-
// emit call to exported only for top level nodes
2645+
// emit call to exporter only for top level nodes
26462646
if (compilerOptions.module === ModuleKind.System && node.parent === currentSourceFile) {
26472647
// emit export default <smth> as
26482648
// export("default", <smth>)
@@ -4420,7 +4420,7 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
44204420
}
44214421
if (languageVersion < ScriptTarget.ES6 && node.parent === currentSourceFile) {
44224422
if (compilerOptions.module === ModuleKind.System && (node.flags & NodeFlags.Export)) {
4423-
// write the call to exported for enum
4423+
// write the call to exporter for enum
44244424
writeLine();
44254425
write(`${exportFunctionForFile}("`);
44264426
emitDeclarationName(node);

0 commit comments

Comments
 (0)