From df6df0c09ea56500a32c33a7dbf1d5f0a77b8042 Mon Sep 17 00:00:00 2001 From: MrSubidubi Date: Mon, 25 May 2026 16:12:01 +0200 Subject: [PATCH] Update message name Co-authored-by: Kirill Bulatov --- crates/zed/src/zed.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/zed/src/zed.rs b/crates/zed/src/zed.rs index 44fe8fcba53..2f4aeeba0bb 100644 --- a/crates/zed/src/zed.rs +++ b/crates/zed/src/zed.rs @@ -1307,7 +1307,7 @@ fn register_actions( impl WorkspaceError for DebugError { fn primary_message(&self) -> SharedString { - SharedString::new_static("Debug action") + SharedString::new_static("This is an error.") } fn severity(&self) -> ErrorSeverity { @@ -1323,7 +1323,7 @@ fn register_actions( impl WorkspaceError for SecondDebugError { fn primary_message(&self) -> SharedString { - SharedString::new_static("Second debug action") + SharedString::new_static("This is some error to ignore.") } fn severity(&self) -> ErrorSeverity {