From ad0c013fc7d74634a2bcfdbce96d8eefe9529a67 Mon Sep 17 00:00:00 2001 From: edoardottt Date: Mon, 24 May 2021 17:04:37 +0200 Subject: [PATCH] update --- input/flags.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.")