From 4e065a55d0cfd376262790bff6f97089d1bdf1f0 Mon Sep 17 00:00:00 2001 From: pjht Date: Mon, 24 Oct 2022 08:37:04 -0500 Subject: [PATCH] Fix no help for bp and resolve --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 700b959..fd3879f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -363,7 +363,7 @@ fn main() -> Result<(), anyhow::Error> { .help("The location to resolve") .required(true), ) - .help("Resolve a location to an address"), + .about("Resolve a location to an address"), |args, state| { let location = args.get_one::("location").unwrap(); Ok(Some(format!( @@ -386,7 +386,7 @@ fn main() -> Result<(), anyhow::Error> { .requires("location") .help("Delete the breakpoint instead of setting it"), ) - .help("Set a breakpoint or list current breakpoints"), + .about("Set a breakpoint or list current breakpoints"), |args, state| { if let Some(location) = args.get_one::("location") { let location = state.symbol_tables.parse_location(location)?;