mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
kill: fix typo
This commit is contained in:
parent
0ebd9c9391
commit
e1d50dae87
1 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue