Skip to content

Commit ad02bfe

Browse files
committed
Sacrifice for the semicolon god
1 parent 8fe20b1 commit ad02bfe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

editors/code/src/ctx.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ export class Ctx {
7474
this.statusBar.color = undefined;
7575
break;
7676
case "warning":
77-
this.statusBar.tooltip += "\nClick to reload."
77+
this.statusBar.tooltip += "\nClick to reload.";
7878
this.statusBar.command = "rust-analyzer.reloadWorkspace";
7979
this.statusBar.color = new vscode.ThemeColor("notificationsWarningIcon.foreground");
8080
icon = "$(warning) ";
8181
break;
8282
case "error":
83-
this.statusBar.tooltip += "\nClick to reload."
83+
this.statusBar.tooltip += "\nClick to reload.";
8484
this.statusBar.command = "rust-analyzer.reloadWorkspace";
8585
this.statusBar.color = new vscode.ThemeColor("notificationsErrorIcon.foreground");
8686
icon = "$(error) ";

editors/code/src/lsp_ext.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ export const analyzerStatus = new lc.RequestType<AnalyzerStatusParams, string, v
1111
export const memoryUsage = new lc.RequestType0<string, void>("rust-analyzer/memoryUsage");
1212

1313
export interface ServerStatusParams {
14-
health: "ok" | "warning" | "error"
15-
quiescent: boolean
16-
message?: string
14+
health: "ok" | "warning" | "error";
15+
quiescent: boolean;
16+
message?: string;
1717
}
1818
export const serverStatus = new lc.NotificationType<ServerStatusParams>("experimental/serverStatus");
1919

0 commit comments

Comments
 (0)