trim trailing whitespace

This commit is contained in:
Tamir Duberstein 2015-09-11 13:25:15 -04:00
parent 4b86c66ef2
commit 5f83d08ae0

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}}`
}
}