From: Frank Wessels Date: Tue, 28 Dec 2021 17:04:28 +0000 (-0800) Subject: Fix mini typo X-Git-Tag: v1.5.2^2~22^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2960%2Fhead;p=thirdparty%2Fzstd.git Fix mini typo --- diff --git a/examples/streaming_compression_thread_pool.c b/examples/streaming_compression_thread_pool.c index 471ca8631..21cb3d549 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;