File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -1266,7 +1266,7 @@ namespace ts {
1266
1266
Diagnostics . Exported_variable_0_has_or_is_using_private_name_1 ;
1267
1267
}
1268
1268
// 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.
1270
1270
else if ( node . kind === SyntaxKind . PropertyDeclaration || node . kind === SyntaxKind . PropertySignature ||
1271
1271
( node . kind === SyntaxKind . Parameter && hasModifier ( node . parent , ModifierFlags . Private ) ) ) {
1272
1272
// TODO(jfreeman): Deal with computed properties in error reporting.
You can’t perform that action at this time.
0 commit comments