Skip to content

Commit c7d53f8

Browse files
committed
Fix whitespace lint
1 parent 1068ee1 commit c7d53f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11395,7 +11395,7 @@ namespace ts {
1139511395
// such that direct inferences to T get priority over inferences to Partial<T>, for example.
1139611396
const inference = getInferenceInfoForType((<IndexType>constraintType).type);
1139711397
if (inference && !inference.isFixed) {
11398-
if (contains(mappedTypeStack, [source, target.symbol], ([s1,t1],[s2,t2]) => s1 === s2 && t1 === t2)) {
11398+
if (contains(mappedTypeStack, [source, target.symbol], ([s1, t1], [s2, t2]) => s1 === s2 && t1 === t2)) {
1139911399
return;
1140011400
}
1140111401
(mappedTypeStack || (mappedTypeStack = [])).push([source, target.symbol]);

0 commit comments

Comments
 (0)