lib: zstd: fix repeated words in comments
authorJilin Yuan <yuanjilin@cdjrlc.com>
Fri, 2 Sep 2022 01:32:12 +0000 (09:32 +0800)
committerNick Terrell <terrelln@fb.com>
Mon, 24 Oct 2022 19:11:40 +0000 (12:11 -0700)
Delete the redundant word 'the'.

Signed-off-by: Jilin Yuan <yuanjilin@cdjrlc.com>
Signed-off-by: Nick Terrell <terrelln@fb.com>
lib/zstd/compress/zstd_compress.c

index a4e916008b3a7192ea387bf4cff06f7d79314df7..73fff4c60149d05ddd7c93543ceae0f8d8f6b619 100644 (file)
@@ -4441,7 +4441,7 @@ static size_t ZSTD_validateSequence(U32 offCode, U32 matchLength,
                                     size_t posInSrc, U32 windowLog, size_t dictSize, U32 minMatch) {
     size_t offsetBound;
     U32 windowSize = 1 << windowLog;
-    /* posInSrc represents the amount of data the the decoder would decode up to this point.
+    /* posInSrc represents the amount of data the decoder would decode up to this point.
      * As long as the amount of data decoded is less than or equal to window size, offsets may be
      * larger than the total length of output decoded in order to reference the dict, even larger than
      * window size. After output surpasses windowSize, we're limited to windowSize offsets again.