Skip to content

Commit 0349caa

Browse files
committed
fix typo
1 parent a2dec0d commit 0349caa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/declarationEmitter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1266,7 +1266,7 @@ namespace ts {
12661266
Diagnostics.Exported_variable_0_has_or_is_using_private_name_1;
12671267
}
12681268
// This check is to ensure we don't report error on constructor parameter property as that error would be reported during parameter emit
1269-
// The only exception here is if the constructor was marked as private. we are not emitting the constructor paramters at all.
1269+
// The only exception here is if the constructor was marked as private. we are not emitting the constructor parameters at all.
12701270
else if (node.kind === SyntaxKind.PropertyDeclaration || node.kind === SyntaxKind.PropertySignature ||
12711271
(node.kind === SyntaxKind.Parameter && hasModifier(node.parent, ModifierFlags.Private))) {
12721272
// TODO(jfreeman): Deal with computed properties in error reporting.

0 commit comments

Comments
 (0)