Skip to content

Commit 338ec1c

Browse files
show help_msg() in --help output
1 parent 3c39bf6 commit 338ec1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operation/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ impl<B: OperationBe + 'static> OperationInboxImpl<B> where <B::Options as Valida
119119

120120
fn static_help() -> Vec<String> {
121121
let mut lines = Vec::new();
122-
lines.push(format!("{}:", B::names()[0]));
122+
lines.push(format!("{} - {}", B::names()[0], B::help_msg()));
123123
lines.append(&mut Self::new_options().dump_help());
124124
return lines;
125125
}

0 commit comments

Comments
 (0)