diff --git a/README.md b/README.md index 37847b1..f233e24 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ These modify or filter the transformation mode. -i value Starting index for transformations if applicable. Accepts ranges separated by '-'. -ic - Ignore case when processing output and converts to lowercase. + Ignore case when processing output and converts all output to lowercase. -k value Only keep items in a file. -l value diff --git a/docs/USAGE.md b/docs/USAGE.md index fd66174..7e7850f 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -112,7 +112,7 @@ There are some additional notes when importing data and getting started: - `ptt -n 50`: Show verbose statistics output with a maximum of 50 items. - `ptt -o [FILE]`: Show output and save JSON output to a file. - `ptt -md`: Show output as a Markdown table. -- `ptt -ic`: Ignore case when creating output. +- `ptt -ic`: Ignore case when creating output and convert to lowercase. - These options are available for all transformations. #### Rockyou Examples: `ptt -f rockyou.txt -t pop -l 4-5`: diff --git a/main.go b/main.go index 3830031..8757f4b 100644 --- a/main.go +++ b/main.go @@ -98,7 +98,7 @@ func main() { bypassMap := flag.Bool("b", false, "Bypass map creation and use stdout as primary output. Disables some options.") debugMode := flag.Int("d", 0, "Enable debug mode with verbosity levels [0-2].") URLParsingMode := flag.Int("p", 0, "Change parsing mode for URL input. [0 = Strict, 1 = Permissive, 2 = Maximum].") - ignoreCase := flag.Bool("ic", false, "Ignore case when processing output and converts to lowercase.") + ignoreCase := flag.Bool("ic", false, "Ignore case when processing output and converts all output to lowercase.") flag.Var(&retain, "k", "Only keep items in a file.") flag.Var(&remove, "r", "Only keep items not in a file.") flag.Var(&readFiles, "f", "Read additional files for input.")