1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-01 21:47:46 +00:00

Correct arg help value name for --parallel

This commit is contained in:
electricboogie 2021-04-10 14:13:49 -05:00
parent 9bcf752b0c
commit 7133273725

View file

@ -677,7 +677,7 @@ pub fn uumain(args: impl uucore::Args) -> i32 {
.arg(
Arg::with_name(OPT_PARALLEL)
.long(OPT_PARALLEL)
.help("change the number of threads running concurrently to N")
.help("change the number of threads running concurrently to NUM_THREADS")
.takes_value(true)
.value_name("NUM_THREADS"),
)