From 98c475f92c54aed3453ca82682f3eb48dbfc23bb Mon Sep 17 00:00:00 2001 From: michalbiesek Date: Mon, 3 Oct 2022 18:20:59 +0200 Subject: [PATCH] Update comments for Command structures --- cli/cmd/attach.go | 2 +- cli/cmd/detach.go | 2 +- cli/cmd/ps.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/cmd/attach.go b/cli/cmd/attach.go index fca931e6d..b9e2164a5 100644 --- a/cli/cmd/attach.go +++ b/cli/cmd/attach.go @@ -21,7 +21,7 @@ import ( * userconfig X X X X X X X X X X - */ -// attachCmd represents the run command +// attachCmd represents the attach command var attachCmd = &cobra.Command{ Use: "attach [flags] PID | ", Short: "Scope a currently-running process", diff --git a/cli/cmd/detach.go b/cli/cmd/detach.go index 0e33aace6..c104ae1c2 100644 --- a/cli/cmd/detach.go +++ b/cli/cmd/detach.go @@ -5,7 +5,7 @@ import ( "github.com/spf13/cobra" ) -// detachCmd represents the run command +// detachCmd represents the detach command var detachCmd = &cobra.Command{ Use: "detach [flags] PID | ", Short: "Unscope a currently-running process", diff --git a/cli/cmd/ps.go b/cli/cmd/ps.go index fbf06db5e..5b7ee49fa 100644 --- a/cli/cmd/ps.go +++ b/cli/cmd/ps.go @@ -12,7 +12,7 @@ import ( /* Args Matrix (X disallows) */ -// psCmd represents the run command +// psCmd represents the ps command var psCmd = &cobra.Command{ Use: "ps", Short: "List processes currently being scoped",