1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-03 14:37:45 +00:00

fix: style/spelling

This commit is contained in:
snapdgn 2022-09-12 12:19:56 +05:30
parent 39e352e2af
commit 243546ce96

View file

@ -74,8 +74,8 @@ fn print_adjusted(
) { ) {
let mut field_width = cmp::max(width, s.len()); let mut field_width = cmp::max(width, s.len());
if let Some(p) = prefix { if let Some(p) = prefix {
if let Some(needprefix) = need_prefix { if let Some(prefix_flag) = need_prefix {
if needprefix { if prefix_flag {
field_width -= p.len(); field_width -= p.len();
} }
} }