aboutsummaryrefslogtreecommitdiffstats
path: root/lib/zstd/compress/zstd_compress.c
diff options
context:
space:
mode:
authorJilin Yuan <[email protected]>2022-09-02 01:32:12 +0000
committerNick Terrell <[email protected]>2022-10-24 19:11:40 +0000
commit7486f5c6e7b197400678f1bb603ac9e4027fb830 (patch)
tree5cf89c9a3a6dd3b86341a1b65cb9749c9fee8234 /lib/zstd/compress/zstd_compress.c
parentMAINTAINERS: git://github -> https://github.com for terrelln (diff)
downloadkernel-7486f5c6e7b197400678f1bb603ac9e4027fb830.tar.gz
kernel-7486f5c6e7b197400678f1bb603ac9e4027fb830.zip
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]>
Diffstat (limited to 'lib/zstd/compress/zstd_compress.c')
-rw-r--r--lib/zstd/compress/zstd_compress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/zstd/compress/zstd_compress.c b/lib/zstd/compress/zstd_compress.c
index a4e916008b3a..73fff4c60149 100644
--- a/lib/zstd/compress/zstd_compress.c
+++ b/lib/zstd/compress/zstd_compress.c
@@ -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.