about summary refs log tree commit diff
path: root/editors/code/src/ctx.ts
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2021-04-06 15:50:02 +0300
committerAleksey Kladov <aleksey.kladov@gmail.com>2021-04-06 15:50:02 +0300
commitad02bfe58fd52293d9ae4a049f98f475df9d3abb (patch)
treebe93b491fdefe0fb217dfb5aa9f1791ea672f196 /editors/code/src/ctx.ts
parent8fe20b19d4702fc6d6933c31abddc8539d2581f0 (diff)
downloadrust-ad02bfe58fd52293d9ae4a049f98f475df9d3abb.tar.gz
rust-ad02bfe58fd52293d9ae4a049f98f475df9d3abb.zip
Sacrifice for the semicolon god
Diffstat (limited to 'editors/code/src/ctx.ts')
-rw-r--r--editors/code/src/ctx.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/ctx.ts b/editors/code/src/ctx.ts
index c05e757f864..bd023f803e7 100644
--- a/editors/code/src/ctx.ts
+++ b/editors/code/src/ctx.ts
@@ -74,13 +74,13 @@ export class Ctx {
                 this.statusBar.color = undefined;
                 break;
             case "warning":
-                this.statusBar.tooltip += "\nClick to reload."
+                this.statusBar.tooltip += "\nClick to reload.";
                 this.statusBar.command = "rust-analyzer.reloadWorkspace";
                 this.statusBar.color = new vscode.ThemeColor("notificationsWarningIcon.foreground");
                 icon = "$(warning) ";
                 break;
             case "error":
-                this.statusBar.tooltip += "\nClick to reload."
+                this.statusBar.tooltip += "\nClick to reload.";
                 this.statusBar.command = "rust-analyzer.reloadWorkspace";
                 this.statusBar.color = new vscode.ThemeColor("notificationsErrorIcon.foreground");
                 icon = "$(error) ";