From d9cf6871aad97514e93e7c09b42c8125d618b6dc Mon Sep 17 00:00:00 2001 From: Gavin Nishizawa Date: Wed, 14 Jun 2023 11:52:30 -0700 Subject: [PATCH] fix default value in flag description --- d2cli/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/d2cli/main.go b/d2cli/main.go index 81c0de2da..b50a02bb0 100644 --- a/d2cli/main.go +++ b/d2cli/main.go @@ -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 }