Skip to content

Commit b646f28

Browse files
committed
Fix lint
1 parent 4e96d98 commit b646f28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/checker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13250,14 +13250,14 @@ namespace ts {
1325013250

1325113251
function reportUnmeasurableMarkers(p: TypeParameter) {
1325213252
if (outofbandVarianceMarkerHandler && (p === markerSuperType || p === markerSubType || p === markerOtherType)) {
13253-
outofbandVarianceMarkerHandler(/*onlyUnreliable*/false);
13253+
outofbandVarianceMarkerHandler(/*onlyUnreliable*/ false);
1325413254
}
1325513255
return p;
1325613256
}
1325713257

1325813258
function reportUnreliableMarkers(p: TypeParameter) {
1325913259
if (outofbandVarianceMarkerHandler && (p === markerSuperType || p === markerSubType || p === markerOtherType)) {
13260-
outofbandVarianceMarkerHandler(/*onlyUnreliable*/true);
13260+
outofbandVarianceMarkerHandler(/*onlyUnreliable*/ true);
1326113261
}
1326213262
return p;
1326313263
}

0 commit comments

Comments
 (0)