Skip to content

Commit

Permalink
typofix
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Feb 17, 2024
1 parent b509cce commit 594baa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions pkg/transformers/sparsify.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ specified value). Only makes sense with output format not being CSV or TSV.
fmt.Fprintf(o, "-h|--help Show this message.\n")

fmt.Fprint(o,
`Example: if the input is two records, one being 'a=1,b=2' and the other
being 'b=3,c=4', then the output is the two records 'a=1,b=2,c=' and
'a=,b=3,c=4'.
`Example: if input is a=1,b=,c=3 then output is a=1,c=3.
`)
}

Expand Down
4 changes: 1 addition & 3 deletions test/cases/cli-help/0001/expout
Original file line number Diff line number Diff line change
Expand Up @@ -998,9 +998,7 @@ Options:
-f {a,b,c} Specify field names to be operated on; any other fields won't be
modified. The default is to modify all fields.
-h|--help Show this message.
Example: if the input is two records, one being 'a=1,b=2' and the other
being 'b=3,c=4', then the output is the two records 'a=1,b=2,c=' and
'a=,b=3,c=4'.
Example: if input is a=1,b=,c=3 then output is a=1,c=3.

================================================================
split
Expand Down

0 comments on commit 594baa6

Please sign in to comment.