From e2490f18e1d705af4779d30b93df707fe1c034a1 Mon Sep 17 00:00:00 2001 From: Matt Lord Date: Tue, 12 Nov 2024 23:06:58 -0500 Subject: [PATCH] Tweak options comment Signed-off-by: Matt Lord --- go/mysql/binlog_event_compression.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/mysql/binlog_event_compression.go b/go/mysql/binlog_event_compression.go index c25ffe44156..6d3a3cb5cd3 100644 --- a/go/mysql/binlog_event_compression.go +++ b/go/mysql/binlog_event_compression.go @@ -367,7 +367,7 @@ func (dp *decoderPool) Get(reader io.Reader) (*zstd.Decoder, error) { } } else { // Use the minimum amount of memory we can in processing the transaction by - // setting lowMem to true and limiting the window concurrency to 1 so that + // setting lowMem to true and limiting the decoder concurrency to 1 so that // there's no async decoding of multiple windows or blocks. d, err := zstd.NewReader(nil, zstd.WithDecoderLowmem(true), zstd.WithDecoderConcurrency(1)) if err != nil { // Should only happen e.g. due to ENOMEM