Skip to content

Commit 83d2bf0

Browse files
committed
Update README.md
1 parent 8c6b4e0 commit 83d2bf0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Flags:
132132
-l, --rate-limit Halt requests upon encountering a 429 (rate limit) HTTP status code.
133133
-r, --redirect Automatically follow redirects in responses.
134134
--request-file string Load request configuration and flags from a specified file.
135-
--timeout int Specify a max timeout time (default: 6000ms). (default 6000)
135+
--timeout int Specify a max timeout time in ms (default 6000)
136136
-u, --uri string Specify the target URL for the request.
137137
-a, --user-agent string pecify a custom User-Agent string for requests (default: 'nomore403').
138138
-v, --verbose Enable verbose output for detailed request/response logging.

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ func init() {
9595
rootCmd.PersistentFlags().BoolVarP(&rateLimit, "rate-limit", "l", false, "Halt requests upon encountering a 429 (rate limit) HTTP status code.")
9696
rootCmd.PersistentFlags().BoolVarP(&redirect, "redirect", "r", false, "Automatically follow redirects in responses.")
9797
rootCmd.PersistentFlags().StringVarP(&requestFile, "request-file", "", "", "Load request configuration and flags from a specified file.")
98-
rootCmd.PersistentFlags().IntVarP(&timeout, "timeout", "", 6000, "Specify a max timeout time (default: 6000ms).")
98+
rootCmd.PersistentFlags().IntVarP(&timeout, "timeout", "", 6000, "Specify a max timeout time in ms.")
9999
rootCmd.PersistentFlags().StringVarP(&uri, "uri", "u", "", "Specify the target URL for the request.")
100100
rootCmd.PersistentFlags().StringVarP(&userAgent, "user-agent", "a", "", "pecify a custom User-Agent string for requests (default: 'nomore403').")
101101
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "Enable verbose output for detailed request/response logging.")

0 commit comments

Comments
 (0)