From 47ff6101ac76e5f70521b35552c9eb46021ea2d9 Mon Sep 17 00:00:00 2001 From: leverimmy Date: Wed, 5 Feb 2025 19:53:34 +0800 Subject: [PATCH] chore: fix a typo --- d2cli/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/d2cli/main.go b/d2cli/main.go index 3e9475149..dbf1ae2c4 100644 --- a/d2cli/main.go +++ b/d2cli/main.go @@ -50,7 +50,7 @@ import ( func Run(ctx context.Context, ms *xmain.State) (err error) { ctx = log.WithDefault(ctx) // These should be kept up-to-date with the d2 man page - watchFlag, err := ms.Opts.Bool("D2_WATCH", "watch", "w", false, "watch for changes to input and live reload. Use $HOST and $PORT to specify the listening address.\n(default localhost:0, which is will open on a randomly available local port).") + watchFlag, err := ms.Opts.Bool("D2_WATCH", "watch", "w", false, "watch for changes to input and live reload. Use $HOST and $PORT to specify the listening address.\n(default localhost:0, which will open on a randomly available local port).") if err != nil { return err }