From fb2ce46b78d50f25a87f31a2ab75e9b44008fd8b Mon Sep 17 00:00:00 2001 From: David Dollar Date: Mon, 26 Aug 2013 21:52:22 -0400 Subject: [PATCH] oops, forgot to hk -> forego --- command.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/command.go b/command.go index a7880e0..677f3cb 100644 --- a/command.go +++ b/command.go @@ -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")) }