mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
refactor: fixes a typo in the arg settings
This commit is contained in:
parent
f1031dac13
commit
a9aae2ade4
1 changed files with 5 additions and 5 deletions
|
@ -3,11 +3,11 @@ use std::ascii::AsciiExt;
|
|||
|
||||
bitflags! {
|
||||
flags Flags: u8 {
|
||||
const REQUIRED = 0b000001,
|
||||
const MULTIPLE = 0b000100,
|
||||
const EMPTY_VALS = 0b001000,
|
||||
const GLOBAL = 0b010000,
|
||||
const HIDDEN = 0b100000,
|
||||
const REQUIRED = 0b00001,
|
||||
const MULTIPLE = 0b00010,
|
||||
const EMPTY_VALS = 0b00100,
|
||||
const GLOBAL = 0b01000,
|
||||
const HIDDEN = 0b10000,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue