Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/pgls_cli/src/panic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn panic_handler(info: &PanicHookInfo) {
writeln!(error, "Encountered an unexpected error").unwrap();
writeln!(error).unwrap();

writeln!(error, "This is a bug in Postgres Tools, not an error in your code, and we would appreciate it if you could report it along with the following information to help us fixing the issue:").unwrap();
writeln!(error, "This is a bug in the Postgres Language Server, not an error in your code, and we would appreciate it if you could report it along with the following information to help us fixing the issue:").unwrap();
writeln!(error).unwrap();

if let Some(location) = info.location() {
Expand Down
Loading