From 2ac189800c4d2eefe182ee55222c61629ccd31da Mon Sep 17 00:00:00 2001 From: Nick Khyl Date: Tue, 14 Jan 2025 16:50:04 -0600 Subject: [PATCH] client/tailscale: fix typo in comment Updates #cleanup Signed-off-by: Nick Khyl --- client/tailscale/localclient.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/tailscale/localclient.go b/client/tailscale/localclient.go index baa211d1f..f440b19a8 100644 --- a/client/tailscale/localclient.go +++ b/client/tailscale/localclient.go @@ -62,7 +62,7 @@ type LocalClient struct { // machine's tailscaled or equivalent. If nil, a default is used. Dial func(ctx context.Context, network, addr string) (net.Conn, error) - // Transport optionally specified an alternate [http.RoundTripper] + // Transport optionally specifies an alternate [http.RoundTripper] // used to execute HTTP requests. If nil, a default [http.Transport] is used, // potentially with custom dialing logic from [Dial]. // It is primarily used for testing.