Fix single-quote lint

This commit is contained in:
Nathan Shively-Sanders 2016-08-10 14:09:52 -07:00
parent 80963baf50
commit 408780864c

View file

@ -5235,7 +5235,7 @@ namespace ts {
}
function createTupleType(elementTypes: Type[], thisType?: Type) {
const id = getTypeListId(elementTypes) + ',' + (thisType ? thisType.id : 0);
const id = getTypeListId(elementTypes) + "," + (thisType ? thisType.id : 0);
return tupleTypes[id] || (tupleTypes[id] = createNewTupleType(elementTypes, thisType));
}