From 6214789c415d76fd658dfd6baa3122f702cd7d31 Mon Sep 17 00:00:00 2001 From: jim teeuwen Date: Wed, 28 Mar 2012 01:43:03 +0200 Subject: [PATCH] Fixed typo in flag description text. --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 1d2f203..1243080 100644 --- a/main.go +++ b/main.go @@ -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()