Commit 7486f5c6 authored by Jilin Yuan's avatar Jilin Yuan Committed by Nick Terrell
Browse files

lib: zstd: fix repeated words in comments



Delete the redundant word 'the'.

Signed-off-by: default avatarJilin Yuan <yuanjilin@cdjrlc.com>
Signed-off-by: default avatarNick Terrell <terrelln@fb.com>
parent 894c792e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.