Skip to content
This repository has been archived by the owner on Jun 20, 2018. It is now read-only.

Commit

Permalink
tweak short help
Browse files Browse the repository at this point in the history
  • Loading branch information
kr committed Mar 28, 2013
1 parent 742d2da commit 445605b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion about.go
Expand Up @@ -2,7 +2,7 @@ package main

var helpAbout = &Command{
Usage: "about",
Short: "copyright, license, and other info about hk itself",
Short: "information about hk (e.g. copyright, license, etc.)",
Long: userAgent + `
Copyright © 2013 Keith Rarick
Expand Down
2 changes: 1 addition & 1 deletion apps.go
Expand Up @@ -45,7 +45,7 @@ func runURL(cmd *Command, args []string) {
var cmdOpen = &Command{
Run: runOpen,
Usage: "open",
Short: "open app",
Short: "open app in a web browser",
Long: `Open opens the app in a web browser. (Assumes cedar.)`,
}

Expand Down
8 changes: 4 additions & 4 deletions main.go
Expand Up @@ -78,16 +78,16 @@ var commands = []*Command{
cmdLs,
cmdScale,
cmdRestart,
cmdEnv,
cmdSet,
cmdUnset,
cmdEnv,
cmdRun,
cmdTail,
cmdDestroy,
cmdSSHAuth,
cmdUnset,
cmdInfo,
cmdOpen,
cmdRename,
cmdDestroy,
cmdSSHAuth,
cmdVersion,
cmdHelp,

Expand Down
2 changes: 1 addition & 1 deletion run.go
Expand Up @@ -21,7 +21,7 @@ var (
var cmdRun = &Command{
Run: runRun,
Usage: "run [-a app] command [arguments]",
Short: "run a process",
Short: "run a process in a dyno",
Long: `Run a process on Heroku`,
}

Expand Down
2 changes: 1 addition & 1 deletion tail.go
Expand Up @@ -20,7 +20,7 @@ var (
var cmdTail = &Command{
Run: runTail,
Usage: "tail [-a app] [-f] [-n lines] [-s source] [-p process]",
Short: "tail log files",
Short: "show the last part of the app log",
Long: `Tail tails log files.`,
}

Expand Down

0 comments on commit 445605b

Please sign in to comment.