Commit 19d7df98 authored by Xin Gao's avatar Xin Gao Committed by Nick Terrell
Browse files

lib: zstd: Fix comment typo



The double `when' is duplicated in line 999, remove one.

Signed-off-by: default avatarXin Gao <gaoxin@cdjrlc.com>
Signed-off-by: default avatarNick Terrell <terrelln@fb.com>
parent 7486f5c6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -996,7 +996,7 @@ size_t ZSTD_decompress(void* dst, size_t dstCapacity, const void* src, size_t sr
size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) { return dctx->expected; }

/*
 * Similar to ZSTD_nextSrcSizeToDecompress(), but when when a block input can be streamed,
 * Similar to ZSTD_nextSrcSizeToDecompress(), but when a block input can be streamed,
 * we allow taking a partial block as the input. Currently only raw uncompressed blocks can
 * be streamed.
 *