diff --git a/crates/debugger_ui/src/new_process_modal.rs b/crates/debugger_ui/src/new_process_modal.rs index 5c6cac6564..1c6166cfac 100644 --- a/crates/debugger_ui/src/new_process_modal.rs +++ b/crates/debugger_ui/src/new_process_modal.rs @@ -831,7 +831,7 @@ impl LaunchMode { pub(super) fn new(window: &mut Window, cx: &mut App) -> Entity { let program = cx.new(|cx| Editor::single_line(window, cx)); program.update(cx, |this, cx| { - this.set_placeholder_text("ENV=Zed ~/bin/debugger --launch", cx); + this.set_placeholder_text("ENV=Zed ~/bin/program --option", cx); }); let cwd = cx.new(|cx| Editor::single_line(window, cx)); @@ -919,7 +919,7 @@ impl LaunchMode { .child(adapter_menu), ) .child( - Label::new("Debugger Program") + Label::new("Program") .size(ui::LabelSize::Small) .color(Color::Muted), )