Skip to content

Commit ceb7720

Browse files
author
Kanchalai Tanglertsampan
committed
Address PR: fix typo
1 parent fa56933 commit ceb7720

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/compiler/emitter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,7 @@ namespace ts {
18371837
write("<");
18381838
emitJsxTagName(node.tagName);
18391839
writeIfAny(node.attributes.properties, " ");
1840-
// We are checking here so we won't re-enter the emiting pipeline and emit extra sourcemap
1840+
// We are checking here so we won't re-enter the emitting pipeline and emit extra sourcemap
18411841
if (node.attributes.properties && node.attributes.properties.length > 0) {
18421842
emit(node.attributes);
18431843
}

src/compiler/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2702,7 +2702,6 @@
27022702
/* @internal */ isReferenced?: boolean; // True if the symbol is referenced elsewhere
27032703
/* @internal */ isReplaceableByMethod?: boolean; // Can this Javascript class property be replaced by a method symbol?
27042704
/* @internal */ isAssigned?: boolean; // True if the symbol is a parameter with assignments
2705-
/* @internal */ syntheticKind?: SyntheticSymbolKind; // Synthetic symbols are either spread or union/intersection
27062705
}
27072706

27082707
/* @internal */

0 commit comments

Comments
 (0)