Skip to content

Commit 4087808

Browse files
committed
Fix single-quote lint
1 parent 80963ba commit 4087808

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
@@ -5235,7 +5235,7 @@ namespace ts {
52355235
}
52365236

52375237
function createTupleType(elementTypes: Type[], thisType?: Type) {
5238-
const id = getTypeListId(elementTypes) + ',' + (thisType ? thisType.id : 0);
5238+
const id = getTypeListId(elementTypes) + "," + (thisType ? thisType.id : 0);
52395239
return tupleTypes[id] || (tupleTypes[id] = createNewTupleType(elementTypes, thisType));
52405240
}
52415241

0 commit comments

Comments
 (0)