diff --git a/core/flags/doc.odin b/core/flags/doc.odin index 6146f53e8..e17cff21b 100644 --- a/core/flags/doc.odin +++ b/core/flags/doc.odin @@ -25,7 +25,7 @@ Underscores (`_`) in a flag will be replaced with dashes (`-`). Bit sets may be set with a strictly comma-separated list of options. -Bit sets may also be set with a binary string of 0's and 1's, and will be parsed from left to right, from least significant bit to most significant bit. Underscores are allowed and will be ignored. However, starting with an underscore is disallowed. +Bit sets may also be set with a binary string of 0s and 1s, and will be parsed from left to right, from least significant bit to most significant bit. Underscores are allowed and will be ignored. However, starting with an underscore is disallowed. Unhandled Arguments: diff --git a/core/flags/internal_rtti.odin b/core/flags/internal_rtti.odin index 925210442..954f3958c 100644 --- a/core/flags/internal_rtti.odin +++ b/core/flags/internal_rtti.odin @@ -152,7 +152,7 @@ parse_and_set_pointer_by_base_type :: proc(ptr: rawptr, str: string, type_info: } case runtime.Type_Info_Bit_Set: - // Parse a string of 1's and 0's, from left to right, + // Parse a string of 1s and 0s, from left to right, // least significant bit to most significant bit. value: u128 diff --git a/flags b/flags new file mode 100755 index 000000000..edbc1c7e9 Binary files /dev/null and b/flags differ