From 0fa1ad411022019b45a67f937287abea489d9eb4 Mon Sep 17 00:00:00 2001 From: Benedikt Kulmann Date: Thu, 4 Jun 2020 15:53:38 +0200 Subject: [PATCH] Fix docblock of commands --- pkg/command/kill.go | 2 +- pkg/command/list.go | 2 +- pkg/command/run.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/command/kill.go b/pkg/command/kill.go index 19e56e5dd..777d23ea2 100644 --- a/pkg/command/kill.go +++ b/pkg/command/kill.go @@ -12,7 +12,7 @@ import ( "github.com/owncloud/ocis/pkg/register" ) -// KillCommand is the entrypoint for the accounts command. +// KillCommand is the entrypoint for the kill command. func KillCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "kill", diff --git a/pkg/command/list.go b/pkg/command/list.go index b61925266..1d141bea0 100644 --- a/pkg/command/list.go +++ b/pkg/command/list.go @@ -11,7 +11,7 @@ import ( "github.com/owncloud/ocis/pkg/register" ) -// ListCommand is the entrypoint for the accounts command. +// ListCommand is the entrypoint for the list command. func ListCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "list", diff --git a/pkg/command/run.go b/pkg/command/run.go index 2c2b3d779..d098a8b15 100644 --- a/pkg/command/run.go +++ b/pkg/command/run.go @@ -13,7 +13,7 @@ import ( "github.com/refs/pman/pkg/process" ) -// RunCommand is the entrypoint for the accounts command. +// RunCommand is the entrypoint for the run command. func RunCommand(cfg *config.Config) *cli.Command { return &cli.Command{ Name: "run",