diff options
| author | Charlotte Brandhorst-Satzkorn <charlotte@tailscale.com> | 2023-08-16 10:35:09 -0700 |
|---|---|---|
| committer | Charlotte Brandhorst-Satzkorn <46385858+catzkorn@users.noreply.github.com> | 2023-08-16 11:10:50 -0700 |
| commit | f101a75dcea215c67a160d7421fe161815f5dc13 (patch) | |
| tree | e0fbffb9adadde8dc4dd77ef531c73bd3bd39cfe | |
| parent | f75a36f9bcc27865bf0b80f9d4ca746714e407fc (diff) | |
| download | tailscale-f101a75dcea215c67a160d7421fe161815f5dc13.tar.xz tailscale-f101a75dcea215c67a160d7421fe161815f5dc13.zip | |
cmd/tailscale/cli: fix comment accuracy
All exit nodes are shown under this subcommand.
Updates tailscale/corp#13025
Signed-off-by: Charlotte Brandhorst-Satzkorn <charlotte@tailscale.com>
| -rw-r--r-- | cmd/tailscale/cli/exitnode.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/tailscale/cli/exitnode.go b/cmd/tailscale/cli/exitnode.go index 3ad5b93b3..d07b01333 100644 --- a/cmd/tailscale/cli/exitnode.go +++ b/cmd/tailscale/cli/exitnode.go @@ -66,7 +66,7 @@ func runExitNodeList(ctx context.Context, args []string) error { var peers []*ipnstate.PeerStatus for _, ps := range st.Peer { if !ps.ExitNodeOption { - // We only show location based exit nodes. + // We only show exit nodes under the exit-node subcommand. continue } |
