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)?;