From 1100ad706c850e2bd1858c89ffb05bd80dbc8579 Mon Sep 17 00:00:00 2001 From: barry <3708366+worksofliam@users.noreply.github.com> Date: Fri, 16 Feb 2024 14:10:30 -0500 Subject: [PATCH] Update src/instantiate.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sébastien Julliand --- src/instantiate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/instantiate.ts b/src/instantiate.ts index d2de5d280..00d81ceef 100644 --- a/src/instantiate.ts +++ b/src/instantiate.ts @@ -126,7 +126,7 @@ export async function loadAllofExtension(context: vscode.ExtensionContext) { if (existingUri) { const existingOptions = parseFSOptions(existingUri); if (existingOptions.readonly !== options.readonly) { - vscode.window.showWarningMessage(`The file is already open in another mode.`); + vscode.window.showWarningMessage(`The file is already opened in another mode.`); vscode.window.showTextDocument(existingUri); return false; }