typo fixed

This commit is contained in:
Vanessa McHale 2017-06-08 23:31:10 -05:00 committed by Kevin K
parent 0da5820e3b
commit a6c6e81529

View file

@ -220,7 +220,7 @@ impl<'a> Help<'a> {
}) {
if arg.longest_filter() {
debugln!("Help::write_args: Current Longest...{}", self.longest);
;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()));
debugln!("Help::write_args: New Longest...{}", self.longest);
}
let btm = ord_m.entry(arg.disp_ord()).or_insert(BTreeMap::new());