From 3e9dc14f35e807e07afec602a34ac377f06cd621 Mon Sep 17 00:00:00 2001 From: Victor Date: Fri, 10 Nov 2023 14:50:59 -0300 Subject: [PATCH] chore: fix typo --- pkg/kgo/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kgo/config.go b/pkg/kgo/config.go index d7c08645..221095cf 100644 --- a/pkg/kgo/config.go +++ b/pkg/kgo/config.go @@ -1110,7 +1110,7 @@ func RecordDeliveryTimeout(timeout time.Duration) ProducerOpt { // the equation. You must also assign a group to consume from. // // To produce transactionally, you first BeginTransaction, then produce records -// consumed from a group, then you EndTransaction. All records prodcued outside +// consumed from a group, then you EndTransaction. All records produced outside // of a transaction will fail immediately with an error. // // After producing a batch, you must commit what you consumed. Auto committing