Skip to content

Commit 78c4a28

Browse files
committed
Changes from code review
1 parent 84cf0e5 commit 78c4a28

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@
998998
"omnisharp.analyzeOpenDocumentsOnly": {
999999
"type": "boolean",
10001000
"default": false,
1001-
"description": "Will only run analyzers against open files when 'enableRoslynAnalyzers' is true"
1001+
"description": "Only run analyzers against open files when 'enableRoslynAnalyzers' is true"
10021002
},
10031003
"omnisharp.testRunSettings": {
10041004
"type": [

src/features/fileOpenCloseProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class FileOpenCloseProvider implements IDisposable {
2929
this._disposable = new CompositeDisposable(this._diagnostics,
3030
vscode.workspace.onDidOpenTextDocument(this._onDocumentOpen, this),
3131
vscode.workspace.onDidCloseTextDocument(this._onDocumentClose, this),
32-
vscode.window.onDidChangeActiveTextEditor(this._onActiveTextEdtiorChnage, this)
32+
vscode.window.onDidChangeActiveTextEditor(this._onActiveTextEditorChnage, this)
3333
);
3434
}
3535

@@ -49,7 +49,7 @@ class FileOpenCloseProvider implements IDisposable {
4949
await serverUtils.fileClose(this._server, { FileName: e.fileName });
5050
}
5151

52-
private async _onActiveTextEdtiorChnage(e: vscode.TextEditor) {
52+
private async _onActiveTextEditorChnage(e: vscode.TextEditor) {
5353
if (shouldIgnoreDocument(e.document)) {
5454
return;
5555
}

0 commit comments

Comments
 (0)