From aab9134062cb5dc1b57ec87b0b43c8ead5f2f668 Mon Sep 17 00:00:00 2001 From: Terts Diepraam Date: Fri, 24 Jun 2022 20:03:27 +0200 Subject: [PATCH] rm: fix help text mistakenly being used as the long option --- src/uu/rm/src/rm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uu/rm/src/rm.rs b/src/uu/rm/src/rm.rs index 4f69c8fb153..ebf5a8f945f 100644 --- a/src/uu/rm/src/rm.rs +++ b/src/uu/rm/src/rm.rs @@ -155,7 +155,7 @@ pub fn uu_app<'a>() -> Command<'a> { .arg( Arg::new(OPT_PROMPT) .short('i') - .long("prompt before every removal") + .help("prompt before every removal") ) .arg( Arg::new(OPT_PROMPT_MORE)