2020-04-24 17:18:29

by Kyoungho Koo

[permalink] [raw]
Subject: [PATCH] ext4: Fix comment typo "the the".

I have found double typed comments "the the". So i modified it to
one "the"

Signed-off-by: kyoungho koo <[email protected]>
---
fs/ext4/inline.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c
index f35e289e17aa..bb8d7cb7bdec 100644
--- a/fs/ext4/inline.c
+++ b/fs/ext4/inline.c
@@ -276,7 +276,7 @@ static int ext4_create_inline_data(handle_t *handle,
len = 0;
}

- /* Insert the the xttr entry. */
+ /* Insert the xttr entry. */
i.value = value;
i.value_len = len;

--
2.17.1


2020-07-29 17:05:41

by Jan Kara

[permalink] [raw]
Subject: Re: [PATCH] ext4: Fix comment typo "the the".

On Sat 25-04-20 02:16:24, kyoungho koo wrote:
> I have found double typed comments "the the". So i modified it to
> one "the"
>
> Signed-off-by: kyoungho koo <[email protected]>

Ted, this seems to have fallen through the cracks...

Honza

> ---
> fs/ext4/inline.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c
> index f35e289e17aa..bb8d7cb7bdec 100644
> --- a/fs/ext4/inline.c
> +++ b/fs/ext4/inline.c
> @@ -276,7 +276,7 @@ static int ext4_create_inline_data(handle_t *handle,
> len = 0;
> }
>
> - /* Insert the the xttr entry. */
> + /* Insert the xttr entry. */
> i.value = value;
> i.value_len = len;
>
> --
> 2.17.1
>
--
Jan Kara <[email protected]>
SUSE Labs, CR

2020-08-18 22:37:49

by Theodore Ts'o

[permalink] [raw]
Subject: Re: [PATCH] ext4: Fix comment typo "the the".

On Sat, Apr 25, 2020 at 02:16:24AM +0900, kyoungho koo wrote:
> I have found double typed comments "the the". So i modified it to
> one "the"
>
> Signed-off-by: kyoungho koo <[email protected]>

Thanks, applied; apologies for this falling through the cracks!

- Ted