diff --git a/input/flags.go b/input/flags.go index e2e0046..447b959 100644 --- a/input/flags.go +++ b/input/flags.go @@ -52,8 +52,8 @@ func ScanFlag() Input { versionPtr := flag.Bool("version", false, "Print the version.") delayPtr := flag.Int("d", 0, "Delay between a page crawled and another.") concurrencyPtr := flag.Int("c", 20, "Concurrency level (20 is default).") - helpPtr := flag.Bool("h", false, "Print the version.") - examplesPtr := flag.Bool("examples", false, "Print the version.") + helpPtr := flag.Bool("h", false, "Print the help.") + examplesPtr := flag.Bool("examples", false, "Print the examples.") plainPtr := flag.Bool("plain", false, "Print only the results.") outputHtmlPtr := flag.String("oh", "", "Write the output into an HTML file.") outputTxtPtr := flag.String("ot", "", "Write the output into a TXT file.")