From 015cf2ce871c4220454fb83dc03cf7ef8b21f35d Mon Sep 17 00:00:00 2001 From: ray hatfield Date: Mon, 15 Jun 2026 11:24:38 -0500 Subject: [PATCH] #2192 - update shutdown message phrasing Changes the shutdown message from "shut down itself" to the more natural "shut itself down". --- client/src/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/client.ts b/client/src/client.ts index 3790fdac..d961f6e2 100644 --- a/client/src/client.ts +++ b/client/src/client.ts @@ -203,7 +203,7 @@ export namespace ESLintClient { client.onNotification(ExitCalled.type, (params) => { serverCalledProcessExit = true; client.error(`Server process exited with code ${params[0]}. This usually indicates a misconfigured ESLint setup.`, params[1]); - void Window.showErrorMessage(`ESLint server shut down itself. See 'ESLint' output channel for details.`, { title: 'Open Output', id: 1}).then((value) => { + void Window.showErrorMessage(`ESLint server shut itself down. See 'ESLint' output channel for details.`, { title: 'Open Output', id: 1}).then((value) => { if (value !== undefined && value.id === 1) { client.outputChannel.show(); }