Fixed typo in flag description text.

pull/4/head
jim teeuwen 2012-03-28 01:43:03 +02:00
parent 384e0cafe9
commit 6214789c41
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ func main() {
in := flag.String("i", "", "Path to the input file. Alternatively, pipe the file data into stdin.")
out := flag.String("o", "", "Optional path to the output file.")
pkgname := flag.String("p", "", "Optional name of the package to generate.")
funcname := flag.String("f", "", "Optional name of the function to generate.")
uncompressed := flag.Bool("u", false, "The specified resource will /not/ be GZIP compressed when this flag isspecified. This alters the generated output code.")
funcname := flag.String("f", "", "Optional name of the function/variable to generate.")
uncompressed := flag.Bool("u", false, "The specified resource will /not/ be GZIP compressed when this flag is specified. This alters the generated output code.")
version := flag.Bool("v", false, "Display version information.")
flag.Parse()