From b26cb6d3b1ab164d6012a9aa7696d55b657ffef5 Mon Sep 17 00:00:00 2001 From: jose Date: Mon, 9 Oct 2023 12:21:12 -0400 Subject: [PATCH] changed help text --- cli/cmd/transformCmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cmd/transformCmd.go b/cli/cmd/transformCmd.go index 7d620ac..63170ae 100644 --- a/cli/cmd/transformCmd.go +++ b/cli/cmd/transformCmd.go @@ -41,7 +41,7 @@ func init() { transformCmd.Flags().StringVarP( &input, "input", "i", "", "input file (optional; if not specified, stdin/pipe is used)") transformCmd.Flags().BoolVarP( - &stream, "stream", "", false, "change the output format to ndjson") + &stream, "stream", "", false, "if specified, each record will be a standalone/full JSON blob and printed out immediately once transform is done") } func openFile(label string, filepath string) (io.ReadCloser, error) {