We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0da5820 commit a6c6e81Copy full SHA for a6c6e81
src/app/help.rs
@@ -220,7 +220,7 @@ impl<'a> Help<'a> {
220
}) {
221
if arg.longest_filter() {
222
debugln!("Help::write_args: Current Longest...{}", self.longest);
223
- ;self.longest = cmp::max(self.longest, str_width(arg.to_string().as_str()));
+ self.longest = cmp::max(self.longest, str_width(arg.to_string().as_str()));
224
debugln!("Help::write_args: New Longest...{}", self.longest);
225
}
226
let btm = ord_m.entry(arg.disp_ord()).or_insert(BTreeMap::new());
0 commit comments