kill: fix typo

This commit is contained in:
Terts Diepraam 2022-05-06 13:58:05 +02:00 committed by Sylvestre Ledru
parent 0ebd9c9391
commit e1d50dae87

View file

@ -22,7 +22,7 @@ static ABOUT: &str = "Send signal to processes or list information about signals
const USAGE: &str = "{} [OPTIONS]... PID..."; const USAGE: &str = "{} [OPTIONS]... PID...";
pub mod options { 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 LIST: &str = "list";
pub static TABLE: &str = "table"; pub static TABLE: &str = "table";
pub static TABLE_OLD: &str = "table_old"; pub static TABLE_OLD: &str = "table_old";
@ -109,7 +109,8 @@ pub fn uu_app<'a>() -> Command<'a> {
.arg( .arg(
Arg::new(options::PIDS_OR_SIGNALS) Arg::new(options::PIDS_OR_SIGNALS)
.hide(true) .hide(true)
.multiple_occurrences(true), .multiple_occurrences(true)
.allow_hyphen_values(true)
) )
} }