From e1d50dae87036186e9b4e1f21042218e2eb813eb Mon Sep 17 00:00:00 2001 From: Terts Diepraam Date: Fri, 6 May 2022 13:58:05 +0200 Subject: [PATCH] kill: fix typo --- src/uu/kill/src/kill.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/uu/kill/src/kill.rs b/src/uu/kill/src/kill.rs index df868e418..e77d0c666 100644 --- a/src/uu/kill/src/kill.rs +++ b/src/uu/kill/src/kill.rs @@ -22,7 +22,7 @@ static ABOUT: &str = "Send signal to processes or list information about signals const USAGE: &str = "{} [OPTIONS]... PID..."; pub mod options { - pub static PIDS_OR_SIGNALS: &str = "pids_of_signals"; + pub static PIDS_OR_SIGNALS: &str = "pids_or_signals"; pub static LIST: &str = "list"; pub static TABLE: &str = "table"; pub static TABLE_OLD: &str = "table_old"; @@ -109,7 +109,8 @@ pub fn uu_app<'a>() -> Command<'a> { .arg( Arg::new(options::PIDS_OR_SIGNALS) .hide(true) - .multiple_occurrences(true), + .multiple_occurrences(true) + .allow_hyphen_values(true) ) }