From 212d2a5cdcb78d56b6fa8ecb80fdb68806370a3e Mon Sep 17 00:00:00 2001 From: Jim Teeuwen Date: Thu, 10 Apr 2014 18:10:22 +0200 Subject: [PATCH] Fixes typo in flag description. --- go-bindata/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-bindata/main.go b/go-bindata/main.go index db561ba..5a16398 100644 --- a/go-bindata/main.go +++ b/go-bindata/main.go @@ -39,7 +39,7 @@ func parseArgs() *bindata.Config { } flag.BoolVar(&c.Debug, "debug", c.Debug, "Do not embed the assets, but provide the embedding API. Contents will still be loaded from disk.") - flag.StringVar(&c.Tags, "tags", c.Tags, "Optional set of uild tags to include.") + flag.StringVar(&c.Tags, "tags", c.Tags, "Optional set of build tags to include.") flag.StringVar(&c.Prefix, "prefix", c.Prefix, "Optional path prefix to strip off asset names.") flag.StringVar(&c.Package, "pkg", c.Package, "Package name to use in the generated code.") flag.BoolVar(&c.NoMemCopy, "nomemcopy", c.NoMemCopy, "Use a .rodata hack to get rid of unnecessary memcopies. Refer to the documentation to see what implications this carries.")