Skip to content

Commit

Permalink
Update comments for Command structures
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbiesek committed Oct 3, 2022
1 parent e254093 commit 98c475f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli/cmd/attach.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 | <process_name>",
Short: "Scope a currently-running process",
Expand Down
2 changes: 1 addition & 1 deletion cli/cmd/detach.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 | <process_name>",
Short: "Unscope a currently-running process",
Expand Down
2 changes: 1 addition & 1 deletion cli/cmd/ps.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 98c475f

Please sign in to comment.