We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c65a4e commit a407f19Copy full SHA for a407f19
1 file changed
crates/pgls_cli/src/diagnostics.rs
@@ -14,10 +14,10 @@ fn command_name() -> String {
14
current_exe()
15
.ok()
16
.and_then(|path| Some(path.file_name()?.to_str()?.to_string()))
17
- .unwrap_or_else(|| String::from("postgrestools"))
+ .unwrap_or_else(|| String::from("postgres-language-server"))
18
}
19
20
-/// A diagnostic that is emitted when running Postgres Tools via CLI.
+/// A diagnostic that is emitted when running Postgres Language Server via CLI.
21
///
22
/// When displaying the diagnostic,
23
#[derive(Debug, Diagnostic)]
0 commit comments