Skip to content

Commit e2e4575

Browse files
author
Armando Aguirre
committed
Fixed more lint issues.
1 parent 01b5803 commit e2e4575

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/harness/client.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -808,19 +808,19 @@ namespace ts.server {
808808
return notImplemented();
809809
}
810810

811-
toggleLineComment(): ts.TextChange[] {
811+
toggleLineComment(): TextChange[] {
812812
throw new Error("Method not implemented.");
813813
}
814814

815-
toggleMultilineComment(): ts.TextChange[] {
815+
toggleMultilineComment(): TextChange[] {
816816
throw new Error("Method not implemented.");
817817
}
818818

819-
commentSelection(): ts.TextChange[] {
819+
commentSelection(): TextChange[] {
820820
throw new Error("Method not implemented.");
821821
}
822822

823-
uncommentSelection(): ts.TextChange[] {
823+
uncommentSelection(): TextChange[] {
824824
throw new Error("Method not implemented.");
825825
}
826826

src/services/shims.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ namespace ts {
279279
getEmitOutputObject(fileName: string): EmitOutput;
280280

281281
toggleLineComment(fileName: string, textChange: TextRange): string;
282-
toggleMultilineComment(fileName: string, textChange:TextRange): string;
282+
toggleMultilineComment(fileName: string, textChange: TextRange): string;
283283
commentSelection(fileName: string, textChange: TextRange): string;
284284
uncommentSelection(fileName: string, textChange: TextRange): string;
285285
}

0 commit comments

Comments
 (0)