@@ -436,24 +436,27 @@ pub fn uu_app() -> Command {
436
436
. long ( options:: LENGTH )
437
437
. value_parser ( value_parser ! ( usize ) )
438
438
. short ( 'l' )
439
- . help ( "digest length in bits; must not exceed the max for the blake2 algorithm and must be a multiple of 8" )
439
+ . help (
440
+ "digest length in bits; must not exceed the max for the blake2 algorithm \
441
+ and must be a multiple of 8",
442
+ )
440
443
. action ( ArgAction :: Set ) ,
441
444
)
442
445
. arg (
443
446
Arg :: new ( options:: RAW )
444
- . long ( options:: RAW )
445
- . help ( "emit a raw binary digest, not hexadecimal" )
446
- . action ( ArgAction :: SetTrue ) ,
447
+ . long ( options:: RAW )
448
+ . help ( "emit a raw binary digest, not hexadecimal" )
449
+ . action ( ArgAction :: SetTrue ) ,
447
450
)
448
451
. arg (
449
452
Arg :: new ( options:: BASE64 )
450
- . long ( options:: BASE64 )
451
- . short ( 'b' )
452
- . help ( "emit a base64 digest, not hexadecimal" )
453
- . action ( ArgAction :: SetTrue )
454
- // Even though this could easily just override an earlier '--raw',
455
- // GNU cksum does not permit these flags to be combined:
456
- . conflicts_with ( options:: RAW ) ,
453
+ . long ( options:: BASE64 )
454
+ . short ( 'b' )
455
+ . help ( "emit a base64 digest, not hexadecimal" )
456
+ . action ( ArgAction :: SetTrue )
457
+ // Even though this could easily just override an earlier '--raw',
458
+ // GNU cksum does not permit these flags to be combined:
459
+ . conflicts_with ( options:: RAW ) ,
457
460
)
458
461
. after_help ( AFTER_HELP )
459
462
}
0 commit comments