aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/status_display.ts
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2019-12-30 22:33:26 +0000
committerGitHub <[email protected]>2019-12-30 22:33:26 +0000
commit09649a991d0a9915266e32539de488f5adca0665 (patch)
tree2d1c0bb99bd073445c51aafe1431143eaf5ef8d6 /editors/code/src/status_display.ts
parente6a1ccc1f49488af31ff7429ff977768d3d32485 (diff)
parent04f0f5077a3567043f202c7caa9a3c40ad798637 (diff)
Merge #2696
2696: Reformat with tsfmt r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'editors/code/src/status_display.ts')
-rw-r--r--editors/code/src/status_display.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/code/src/status_display.ts b/editors/code/src/status_display.ts
index ed8573f02..48cf0655b 100644
--- a/editors/code/src/status_display.ts
+++ b/editors/code/src/status_display.ts
@@ -28,11 +28,11 @@ export class StatusDisplay implements vscode.Disposable {
28 if (this.packageName) { 28 if (this.packageName) {
29 this.statusBarItem!.text = `cargo ${this.command} [${ 29 this.statusBarItem!.text = `cargo ${this.command} [${
30 this.packageName 30 this.packageName
31 }] ${this.frame()}`; 31 }] ${this.frame()}`;
32 } else { 32 } else {
33 this.statusBarItem!.text = `cargo ${ 33 this.statusBarItem!.text = `cargo ${
34 this.command 34 this.command
35 } ${this.frame()}`; 35 } ${this.frame()}`;
36 } 36 }
37 }, 300); 37 }, 300);
38 38