fix default value in flag description

This commit is contained in:
Gavin Nishizawa 2023-06-14 11:52:30 -07:00
parent fcd4fefb64
commit d9cf6871aa
No known key found for this signature in database
GPG key ID: AE3B177777CE55CD

View file

@ -89,7 +89,7 @@ func Run(ctx context.Context, ms *xmain.State) (err error) {
if err != nil {
return err
}
timeoutFlag, err := ms.Opts.Int64("D2_TIMEOUT", "timeout", "", 0, "the number of seconds before d2 will timeout. default is 60s.")
timeoutFlag, err := ms.Opts.Int64("D2_TIMEOUT", "timeout", "", 0, "the number of seconds before d2 will timeout. (default=120)")
if err != nil {
return err
}