From a407f1900dbebcd63e3f3492c24b67c45d81474c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Steinr=C3=B6tter?= Date: Sat, 7 Mar 2026 15:57:54 +0100 Subject: [PATCH] chore: naming --- crates/pgls_cli/src/diagnostics.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/pgls_cli/src/diagnostics.rs b/crates/pgls_cli/src/diagnostics.rs index 868c88e5c..9093101cc 100644 --- a/crates/pgls_cli/src/diagnostics.rs +++ b/crates/pgls_cli/src/diagnostics.rs @@ -14,10 +14,10 @@ fn command_name() -> String { current_exe() .ok() .and_then(|path| Some(path.file_name()?.to_str()?.to_string())) - .unwrap_or_else(|| String::from("postgrestools")) + .unwrap_or_else(|| String::from("postgres-language-server")) } -/// A diagnostic that is emitted when running Postgres Tools via CLI. +/// A diagnostic that is emitted when running Postgres Language Server via CLI. /// /// When displaying the diagnostic, #[derive(Debug, Diagnostic)]