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)]