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.
This commit is contained in:
		@ -24,7 +24,7 @@ import (
 | 
				
			|||||||
var cfgFile string
 | 
					var cfgFile string
 | 
				
			||||||
var userLicense 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{
 | 
					var RootCmd = &cobra.Command{
 | 
				
			||||||
	Use:   "cobra",
 | 
						Use:   "cobra",
 | 
				
			||||||
	Short: "A generator for Cobra based Applications",
 | 
						Short: "A generator for Cobra based Applications",
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user