From f643f707c963bce9114cabf97446a560e34c7a31 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Wed, 30 Mar 2016 17:50:52 -0400 Subject: [PATCH] Update root.go to fix golint bug with comment Fix the name in the comment to fix a golint bug by not having the variable name begin the comment. --- cobra/cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cobra/cmd/root.go b/cobra/cmd/root.go index 610386ad..dbe607be 100644 --- a/cobra/cmd/root.go +++ b/cobra/cmd/root.go @@ -24,7 +24,7 @@ import ( var cfgFile string var userLicense string -// This represents the base command when called without any subcommands +// RootCmd represents the base command when called without any subcommands var RootCmd = &cobra.Command{ Use: "cobra", Short: "A generator for Cobra based Applications",