summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authordemo <demo@antix1>2026-05-23 10:49:32 -0400
committerdemo <demo@antix1>2026-05-23 10:49:59 -0400
commitdaaf30a1fd33b0915facc347a20a9066a2f886de (patch)
tree59b6b3a1e7d294b2d2cd765cd98e6f71727903fb /main.go
parente7640e2c1e57bd94c10bed08cef851cc44f06160 (diff)
docs: expound help string for -max argument
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 346f75f..7c2fe09 100644
--- a/main.go
+++ b/main.go
@@ -11,7 +11,7 @@ import (
func main() {
maxConcurrency := flag.Int("c", 0, "Maximum number of concurrent queue pushes")
startRawURL := flag.String("url", "", "Entry-point URL")
- maxURLs := flag.Int("max", 0, "Maximum number of URLs to collect (0 means no limit)")
+ maxURLs := flag.Int("max", 0, "Maximum number of URLs to collect (omitted or 0 means no limit)")
flag.Parse()