Skip to content
This repository was archived by the owner on Dec 25, 2023. It is now read-only.

Commit 63a35d0

Browse files
committed
minor cleanup
1 parent 4e78644 commit 63a35d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/applyWorkspaceEdit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// eslint-disable-next-line no-unused-vars
22
import type * as lspTypes from "vscode-languageserver-protocol";
3-
import { openFile } from "./novaUtils";
43
import { lspRangeToRange } from "./lspNovaConversions";
4+
import { openFile } from "./novaUtils";
55

66
// @Deprecated I want to replace this with a call to Nova's client with workspace/applyEdit, but that's currently not possible.
77
// I've requested this feature.

src/commands/rename.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function registerRename(client: LanguageClient) {
1313
);
1414

1515
async function rename(editor: TextEditor) {
16-
// Select full word. It will be showed in a palette so the user can review it
16+
// Select full word. It will be shown in a palette so the user can review it
1717
editor.selectWordsContainingCursors();
1818

1919
const selectedRange = editor.selectedRange;

0 commit comments

Comments
 (0)