From 7ee35bad6b9e20c8f01e96c5e106cab7bd4d45ec Mon Sep 17 00:00:00 2001 From: Frank Wessels Date: Tue, 28 Dec 2021 09:04:28 -0800 Subject: [PATCH] Fix mini typo --- examples/streaming_compression_thread_pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/streaming_compression_thread_pool.c b/examples/streaming_compression_thread_pool.c index 471ca863..21cb3d54 100644 --- a/examples/streaming_compression_thread_pool.c +++ b/examples/streaming_compression_thread_pool.c @@ -60,7 +60,7 @@ static void *compressFile_orDie(void *data) CHECK_ZSTD( ZSTD_CCtx_setParameter(cctx, ZSTD_c_checksumFlag, 1) ); ZSTD_CCtx_setParameter(cctx, ZSTD_c_nbWorkers, nbThreads); - /* This loop read from the input file, compresses that entire chunk, + /* This loop reads from the input file, compresses that entire chunk, * and writes all output produced to the output file. */ size_t const toRead = buffInSize;