From 81e180795cccd1b1d7380f989f0068e669d19b6b Mon Sep 17 00:00:00 2001 From: Bingran Hu Date: Thu, 12 Dec 2024 12:07:56 -0500 Subject: [PATCH] Improve comment --- .../core/src/clp/streaming_compression/lzma/Compressor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/core/src/clp/streaming_compression/lzma/Compressor.cpp b/components/core/src/clp/streaming_compression/lzma/Compressor.cpp index 7edd61ae9..36a5038b4 100644 --- a/components/core/src/clp/streaming_compression/lzma/Compressor.cpp +++ b/components/core/src/clp/streaming_compression/lzma/Compressor.cpp @@ -238,7 +238,7 @@ auto Compressor::flush_lzma(lzma_action flush_action) -> void { case LZMA_OK: break; case LZMA_STREAM_END: - // NOTE: this might not be true when multithreaded encoder is used with + // NOTE: flush may not have completed if a multithreaded encoder is using action // LZMA_FULL_BARRIER. For now, we skip this check. flushed = true; break;