Skip to content

Commit a5d320a

Browse files
committed
Fix whitespace lint
1 parent 4214aed commit a5d320a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ namespace ts {
805805
}
806806
else {
807807
const isDeclarationInstanceProperty = declaration.kind === SyntaxKind.PropertyDeclaration && !(getModifierFlags(declaration) & ModifierFlags.Static);
808-
if(!isDeclarationInstanceProperty || getContainingClass(usage) !== getContainingClass(declaration)) {
808+
if (!isDeclarationInstanceProperty || getContainingClass(usage) !== getContainingClass(declaration)) {
809809
return true;
810810
}
811811
}

0 commit comments

Comments
 (0)