Skip to content

Commit 7486f5c

Browse files
Jilin Yuanterrelln
authored andcommitted
lib: zstd: fix repeated words in comments
Delete the redundant word 'the'. Signed-off-by: Jilin Yuan <[email protected]> Signed-off-by: Nick Terrell <[email protected]>
1 parent 894c792 commit 7486f5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/zstd/compress/zstd_compress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4441,7 +4441,7 @@ static size_t ZSTD_validateSequence(U32 offCode, U32 matchLength,
44414441
size_t posInSrc, U32 windowLog, size_t dictSize, U32 minMatch) {
44424442
size_t offsetBound;
44434443
U32 windowSize = 1 << windowLog;
4444-
/* posInSrc represents the amount of data the the decoder would decode up to this point.
4444+
/* posInSrc represents the amount of data the decoder would decode up to this point.
44454445
* As long as the amount of data decoded is less than or equal to window size, offsets may be
44464446
* larger than the total length of output decoded in order to reference the dict, even larger than
44474447
* window size. After output surpasses windowSize, we're limited to windowSize offsets again.

0 commit comments

Comments
 (0)