From 8344855183dbd3cb190de76f0210aa07d7433b19 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sat, 3 Sep 2022 14:48:58 +0200 Subject: [PATCH] expand: fix line that's too long --- src/uu/expand/src/expand.rs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/uu/expand/src/expand.rs b/src/uu/expand/src/expand.rs index bbbe2de71..414138da6 100644 --- a/src/uu/expand/src/expand.rs +++ b/src/uu/expand/src/expand.rs @@ -296,19 +296,23 @@ pub fn uu_app<'a>() -> Command<'a> { .value_name("N, LIST") .takes_value(true) .multiple_occurrences(true) - .help("have tabs N characters apart, not 8 or use comma separated list of explicit tab positions"), + .help( + "have tabs N characters apart, not 8 or use comma separated list \ + of explicit tab positions", + ), ) .arg( Arg::new(options::NO_UTF8) .long(options::NO_UTF8) .short('U') .help("interpret input file as 8-bit ASCII rather than UTF-8"), - ).arg( + ) + .arg( Arg::new(options::FILES) .multiple_occurrences(true) .hide(true) .takes_value(true) - .value_hint(clap::ValueHint::FilePath) + .value_hint(clap::ValueHint::FilePath), ) }