Skip to content

Commit 359f466

Browse files
authored
Merge pull request #15 from thunfischbrot/patch-1
Update root.go for typo -D (input -> output)
2 parents 0b07922 + 85ff8b5 commit 359f466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csvtk/cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func init() {
6969
RootCmd.PersistentFlags().IntP("num-cpus", "j", runtime.NumCPU(), `number of CPUs to use (default value depends on your computer)`)
7070

7171
RootCmd.PersistentFlags().StringP("delimiter", "d", ",", `delimiting character of the input CSV file`)
72-
RootCmd.PersistentFlags().StringP("out-delimiter", "D", ",", `delimiting character of the input CSV file`)
72+
RootCmd.PersistentFlags().StringP("out-delimiter", "D", ",", `delimiting character of the output CSV file`)
7373
// RootCmd.PersistentFlags().StringP("quote-char", "q", `"`, `character used to quote strings in the input CSV file`)
7474
RootCmd.PersistentFlags().StringP("comment-char", "C", `#`, "lines starting with commment-character will be ignored. "+
7575
`if your header row starts with '#', please assign "-C" another rare symbol, e.g. '$'`)

0 commit comments

Comments
 (0)