Skip to content

Commit

Permalink
Minor flag help text change; go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mholt committed May 6, 2015
1 parent 20c0188 commit b2549c3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ import (
)

var (
conf string
http2 bool // TODO: temporary flag until http2 is standard
quiet bool
cpu string
conf string
http2 bool // TODO: temporary flag until http2 is standard
quiet bool
cpu string
)

func init() {
flag.StringVar(&conf, "conf", "", "Configuration file to use")
flag.StringVar(&conf, "conf", "", "Configuration file to use (default="+config.DefaultConfigFile+")")
flag.BoolVar(&http2, "http2", true, "Enable HTTP/2 support") // TODO: temporary flag until http2 merged into std lib
flag.BoolVar(&quiet, "quiet", false, "Quiet mode (no initialization output)")
flag.StringVar(&cpu, "cpu", "100%", "CPU cap")
Expand Down

0 comments on commit b2549c3

Please sign in to comment.