[PATCH] lib: zstd: Fix typo 'the the' in comment

Slark Xiao posted 1 patch 3 years, 8 months ago
lib/zstd/compress/zstd_compress.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] lib: zstd: Fix typo 'the the' in comment
Posted by Slark Xiao 3 years, 8 months ago
Replace 'the the' with 'the' in the comment.

Signed-off-by: Slark Xiao <slark_xiao@163.com>
---
 lib/zstd/compress/zstd_compress.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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.
-- 
2.25.1
Re: [PATCH] lib: zstd: Fix typo 'the the' in comment
Posted by Nick Terrell 3 years, 6 months ago

> On Jul 22, 2022, at 3:24 AM, Slark Xiao <slark_xiao@163.com> wrote:
> 
> > 
> Replace 'the the' with 'the' in the comment.
> 
> Signed-off-by: Slark Xiao <slark_xiao@163.com>

Hi Slark, I've already merged another patch which makes this change into my tree,
so I'm dropping this patch.

Best,
Nick Terrell
> ---
> lib/zstd/compress/zstd_compress.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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.
> -- 
> 2.25.1
>