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