cmd/tailscale/cli: fix a typo in the `whois` help text

Updates #cleanup

Change-Id: I739052548b81a94c4e4997d15883ee755c57df3c
Signed-off-by: Alex Chan <alexc@tailscale.com>
main
Alex Chan 4 weeks ago committed by Alex Chan
parent 1d6ecb1e51
commit 67496e14c6
  1. 2
      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
}(),
}

Loading…
Cancel
Save