Skip to content

Commit 2a29839

Browse files
committed
Retype the text instead of removing the bad character
1 parent 28abe4d commit 2a29839

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
@@ -1358,7 +1358,7 @@ module ts {
13581358
return result;
13591359
}
13601360

1361-
function signatureToString(signature: Signature, enclosingDeclaration?: Node, flags?: TypeFormatFlags): string{
1361+
function signatureToString(signature: Signature, enclosingDeclaration?: Node, flags?: TypeFormatFlags): string {
13621362
let writer = getSingleLineStringWriter();
13631363
getSymbolDisplayBuilder().buildSignatureDisplay(signature, writer, enclosingDeclaration, flags);
13641364
let result = writer.string();

0 commit comments

Comments
 (0)