[PATCH 2/2] lib: fix repeated word 'the' in comment
From: Hemanth Selam
Date: Fri Sep 04 2026 - 09:04:14 EST
Drop the second 'the', reported by checkpatch.pl as a possible repeated
word. Only touches a comment, no code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@xxxxxxxxx>
---
lib/raid/raid6/algos.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/raid/raid6/algos.c b/lib/raid/raid6/algos.c
index 011aa9d0eb3c..182ab9844ba9 100644
--- a/lib/raid/raid6/algos.c
+++ b/lib/raid/raid6/algos.c
@@ -66,7 +66,7 @@ EXPORT_SYMBOL_GPL(raid6_gen_syndrome);
* This is used to update parity in place using the following sequence:
*
* 1) call raid6_xor_syndrome(disk, start, stop, ...) for the existing data.
- * 2) update the the data in @ptrs[@start..@stop].
+ * 2) update the data in @ptrs[@start..@stop].
* 3) call raid6_xor_syndrome(disk, start, stop, ...) for the new data.
*
* Data between @start and @stop that is not changed should be filled
--
2.48.1