refactor: fixes a typo in the arg settings

This commit is contained in:
Kevin K 2015-09-30 23:28:21 -04:00
parent f1031dac13
commit a9aae2ade4

View file

@ -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,
}
}