Merge pull request #148 from tamird/trailing-spaces

trim trailing whitespace
This commit is contained in:
Eric Paris 2015-09-11 17:24:06 -05:00
commit 42498ec777

View file

@ -248,8 +248,7 @@ func (c *Command) UsageTemplate() string {
if c.HasParent() {
return c.parent.UsageTemplate()
} else {
return `{{ $cmd := . }}
Usage: {{if .Runnable}}
return `{{ $cmd := . }}Usage:{{if .Runnable}}
{{.UseLine}}{{if .HasFlags}} [flags]{{end}}{{end}}{{if .HasSubCommands}}
{{ .CommandPath}} [command]{{end}}{{if gt .Aliases 0}}
@ -286,8 +285,7 @@ func (c *Command) HelpTemplate() string {
return c.parent.HelpTemplate()
} else {
return `{{with or .Long .Short }}{{. | trim}}{{end}}
{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}
`
{{if or .Runnable .HasSubCommands}}{{.UsageString}}{{end}}`
}
}