diff --git a/cmd/nvidia-ctk/info/info.go b/cmd/nvidia-ctk/info/info.go index 4a5c89f0..d2aa50cc 100644 --- a/cmd/nvidia-ctk/info/info.go +++ b/cmd/nvidia-ctk/info/info.go @@ -35,13 +35,13 @@ func NewCommand(logger *logrus.Logger) *cli.Command { // build func (m command) build() *cli.Command { - // Create the 'hook' command - hook := cli.Command{ + // Create the 'info' command + info := cli.Command{ Name: "info", Usage: "Provide information about the system", } - hook.Subcommands = []*cli.Command{} + info.Subcommands = []*cli.Command{} - return &hook + return &info }