Skip to content

Commit 9051021

Browse files
authored
Clarify label on source action (microsoft#153356)
Clairify label on source action For microsoft/vscode-eslint#1428
1 parent 8721752 commit 9051021

File tree

1 file changed

+1
-1
lines changed
  • extensions/typescript-language-features/src/languageFeatures

1 file changed

+1
-1
lines changed

extensions/typescript-language-features/src/languageFeatures/fixAll.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class SourceFixAll extends SourceAction {
133133
static readonly kind = vscode.CodeActionKind.SourceFixAll.append('ts');
134134

135135
constructor() {
136-
super(localize('autoFix.label', 'Fix All'), SourceFixAll.kind);
136+
super(localize('autoFix.label', 'Fix all fixable JS/TS issues'), SourceFixAll.kind);
137137
}
138138

139139
async build(client: ITypeScriptServiceClient, file: string, diagnostics: readonly vscode.Diagnostic[], token: vscode.CancellationToken): Promise<void> {

0 commit comments

Comments
 (0)