From 6008ad3fa73000c07f6549c1d7743175c9480e46 Mon Sep 17 00:00:00 2001 From: Shane Warden <55407805+swagile1@users.noreply.github.com> Date: Wed, 16 Nov 2022 18:45:45 -0800 Subject: [PATCH] Fix documentation typo in groups.go Minor typo fix --- group.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/group.go b/group.go index 09cb1a7..79fba43 100644 --- a/group.go +++ b/group.go @@ -447,7 +447,7 @@ func (cmd *groupCmd) parseFlags(as []string) groupArgs { flags.BoolVar(&args.pretty, "pretty", true, "Control output pretty printing.") flags.StringVar(&args.version, "version", "", "Kafka protocol version") flags.StringVar(&args.partitions, "partitions", allPartitionsHuman, "comma separated list of partitions to limit offsets to, or all") - flags.BoolVar(&args.offsets, "offsets", true, "Controls if offsets should be fetched (defauls to true)") + flags.BoolVar(&args.offsets, "offsets", true, "Controls if offsets should be fetched (defaults to true)") flags.Usage = func() { fmt.Fprintln(os.Stderr, "Usage of group:")