oops, forgot to hk -> forego

This commit is contained in:
David Dollar
2013-08-26 21:52:22 -04:00
parent e7fbf118bb
commit fb2ce46b78
+3 -3
View File
@@ -15,13 +15,13 @@ type Command struct {
Flag flag.FlagSet
Usage string // first word is the command name
Short string // `hk help` output
Long string // `hk help cmd` output
Short string // `forego help` output
Long string // `forego help cmd` output
}
func (c *Command) printUsage() {
if c.Runnable() {
fmt.Printf("Usage: hk %s\n\n", c.Usage)
fmt.Printf("Usage: forego %s\n\n", c.Usage)
}
fmt.Println(strings.Trim(c.Long, "\n"))
}