Skip to content

Commit d1c6aa0

Browse files
committed
CR feedback
1 parent 6c9c959 commit d1c6aa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lsptoolshost/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ async function completionComplexEdit(
115115
let editor: vscode.TextEditor | undefined = undefined;
116116
if (isSnippetString || newOffset >= 0) {
117117
editor = await vscode.window.showTextDocument(document);
118-
if (editor == undefined) {
118+
if (editor === undefined) {
119119
outputAndThrow(outputChannel, `${componentName} Editor unavailable for document with path: '${uriStr}'`);
120120
}
121121
}

0 commit comments

Comments
 (0)