summaryrefslogtreecommitdiff
path: root/Documentation/locking
diff options
context:
space:
mode:
authorAkhil Raj <lf32.dev@gmail.com>2022-08-27 20:23:59 +0530
committerJonathan Corbet <corbet@lwn.net>2022-09-27 13:21:43 -0600
commitd2bef8e1037cc69695c6b146bb05ce053450e0de (patch)
treefc8ce03016e6b4102111bff92fadb8073648ef0f /Documentation/locking
parent3b384e95642c0f01a34525a71b6a5a4826934b75 (diff)
Remove duplicate words inside documentation
I have removed repeated `the` inside the documentation Signed-off-by: Akhil Raj <lf32.dev@gmail.com> Link: https://lore.kernel.org/r/20220827145359.32599-1-lf32.dev@gmail.com Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/locking')
-rw-r--r--Documentation/locking/seqlock.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/locking/seqlock.rst b/Documentation/locking/seqlock.rst
index 64405e5da63e..bfda1a5fecad 100644
--- a/Documentation/locking/seqlock.rst
+++ b/Documentation/locking/seqlock.rst
@@ -39,7 +39,7 @@ as the writer can invalidate a pointer that the reader is following.
Sequence counters (``seqcount_t``)
==================================
-This is the the raw counting mechanism, which does not protect against
+This is the raw counting mechanism, which does not protect against
multiple writers. Write side critical sections must thus be serialized
by an external lock.