Skip to content

Commit

Permalink
Fixed a typo in examples
Browse files Browse the repository at this point in the history
This typo was noticed by Stuart Henderson

See: https://marc.info/?l=openbsd-ports&m=171992964702902&w=2
  • Loading branch information
catap authored Jul 2, 2024
1 parent 7e4bb25 commit 5844ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ func Usage(flags *flag.FlagSet) {
fmt.Fprintf(flags.Output(), "\n%s\n", bold("Examples:"))
fmt.Fprintf(flags.Output(), " $ trdsql \"SELECT c1,c2 FROM test.csv\"\n")
fmt.Fprintf(flags.Output(), " $ trdsql -oltsv \"SELECT c1,c2 FROM test.json::.items\"\n")
fmt.Fprintf(flags.Output(), " $ cat test.csv | trdsql -i csv -oltsv \"SELECT c1,c2 FROM -\"\n")
fmt.Fprintf(flags.Output(), " $ cat test.csv | trdsql -icsv -oltsv \"SELECT c1,c2 FROM -\"\n")
}

func usageFlag(f *flag.Flag) string {
Expand Down

0 comments on commit 5844ffc

Please sign in to comment.