From 3b09768ebcd7ea6523c58c92e32198ae5b18e11c Mon Sep 17 00:00:00 2001
From: Veetaha <veetaha2@gmail.com>
Date: Tue, 31 Mar 2020 19:06:07 +0300
Subject: vscode: apply review nits

---
 editors/code/src/commands/syntax_tree.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'editors/code/src/commands')

diff --git a/editors/code/src/commands/syntax_tree.ts b/editors/code/src/commands/syntax_tree.ts
index eba511193..91d97f9c4 100644
--- a/editors/code/src/commands/syntax_tree.ts
+++ b/editors/code/src/commands/syntax_tree.ts
@@ -98,7 +98,7 @@ class AstInspector implements vscode.HoverProvider, Disposable {
     }
 
     private onDidCloseTextDocument(doc: vscode.TextDocument) {
-        if (!!this.rustEditor && doc.uri.toString() === this.rustEditor.document.uri.toString()) {
+        if (this.rustEditor && doc.uri.toString() === this.rustEditor.document.uri.toString()) {
             this.setRustEditor(undefined);
         }
     }
-- 
cgit v1.2.3