From 61d4996125ba6ac1d5cd30bbeef8fcda868b9eb0 Mon Sep 17 00:00:00 2001 From: Rafael Weinstein Date: Fri, 10 Jun 2016 15:33:30 -0700 Subject: [PATCH] Fix command line output (#1786) --- samples/go/csv/csv-import/importer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/go/csv/csv-import/importer.go b/samples/go/csv/csv-import/importer.go index 98a0ebe85b..b88a3fcc62 100644 --- a/samples/go/csv/csv-import/importer.go +++ b/samples/go/csv/csv-import/importer.go @@ -41,7 +41,7 @@ func main() { name = flag.String("name", "Row", "struct name. The user-visible name to give to the struct type that will hold each row of data.") columnTypes = flag.String("column-types", "", "a comma-separated list of types representing the desired type of each column. if absent all types default to be String") noProgress = flag.Bool("no-progress", false, "prevents progress from being output if true") - destType = flag.String("dest-type", "list", "the destination type to import to. can be 'list' or 'map:', where is the name of the column that is a the unique identifier for the column") + destType = flag.String("dest-type", "list", "the destination type to import to. can be 'list' or 'map:', where is the index position (0-based) of the column that is a the unique identifier for the column") destTypePattern = regexp.MustCompile("^(list|map):(\\d+)$") )