From 67496e14c6af55820ea198a3afea59d99953e0ab Mon Sep 17 00:00:00 2001 From: Alex Chan Date: Mon, 23 Mar 2026 14:54:40 +0000 Subject: [PATCH] cmd/tailscale/cli: fix a typo in the `whois` help text Updates #cleanup Change-Id: I739052548b81a94c4e4997d15883ee755c57df3c Signed-off-by: Alex Chan --- cmd/tailscale/cli/whois.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tailscale/cli/whois.go b/cmd/tailscale/cli/whois.go index b2ad74149..7cc8f2889 100644 --- a/cmd/tailscale/cli/whois.go +++ b/cmd/tailscale/cli/whois.go @@ -26,7 +26,7 @@ var whoisCmd = &ffcli.Command{ FlagSet: func() *flag.FlagSet { fs := newFlagSet("whois") fs.BoolVar(&whoIsArgs.json, "json", false, "output in JSON format") - fs.StringVar(&whoIsArgs.proto, "proto", "", `protocol; one of "tcp" or "udp"; empty mans both `) + fs.StringVar(&whoIsArgs.proto, "proto", "", `protocol; one of "tcp" or "udp"; empty means both`) return fs }(), }