This commit is contained in:
Mitchell Hashimoto 2013-03-24 16:36:02 -07:00
parent f6919cf18b
commit b25bf0c0c9
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ func (e *Environment) PrintHelp() {
command := e.command[key]
// Pad the key with spaces so that they're all the same width
key = fmt.Sprintf("%v%v", key, strings.Repeat(" ", maxKeyLen - len(key)))
key = fmt.Sprintf("%v%v", key, strings.Repeat(" ", maxKeyLen-len(key)))
// Output the command and the synopsis
e.ui.Say(" %v %v\n", key, command.Synopsis())