Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Akhil Raj and committed by
Jonathan Corbet
d2bef8e1 3b384e95

+7 -7
+1 -1
Documentation/admin-guide/kdump/vmcoreinfo.rst
··· 200 200 201 201 A pointer to the printk ringbuffer (struct printk_ringbuffer). This 202 202 may be pointing to the static boot ringbuffer or the dynamically 203 - allocated ringbuffer, depending on when the the core dump occurred. 203 + allocated ringbuffer, depending on when the core dump occurred. 204 204 Used by user-space tools to read the active kernel log buffer. 205 205 206 206 printk_rb_static
+2 -2
Documentation/bpf/map_cgroup_storage.rst
··· 31 31 }; 32 32 33 33 ``cgroup_inode_id`` is the inode id of the cgroup directory. 34 - ``attach_type`` is the the program's attach type. 34 + ``attach_type`` is the program's attach type. 35 35 36 36 Linux 5.9 added support for type ``__u64 cgroup_inode_id`` as the key type. 37 37 When this key type is used, then all attach types of the particular cgroup and ··· 155 155 ``BPF_MAP_TYPE_CGROUP_STORAGE`` or more than one 156 156 ``BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE``. 157 157 158 - In all versions, userspace may use the the attach parameters of cgroup and 158 + In all versions, userspace may use the attach parameters of cgroup and 159 159 attach type pair in ``struct bpf_cgroup_storage_key`` as the key to the BPF map 160 160 APIs to read or update the storage for a given attachment. For Linux 5.9 161 161 attach type shared storages, only the first value in the struct, cgroup inode
+1 -1
Documentation/core-api/cpu_hotplug.rst
··· 560 560 * cpuhp_state_remove_instance(state, node) 561 561 * cpuhp_state_remove_instance_nocalls(state, node) 562 562 563 - The arguments are the same as for the the cpuhp_state_add_instance*() 563 + The arguments are the same as for the cpuhp_state_add_instance*() 564 564 variants above. 565 565 566 566 The functions differ in the way how the installed callbacks are treated:
+1 -1
Documentation/driver-api/isa.rst
··· 100 100 the isa_driver pointer to the private struct isa_dev is ofcourse fine as 101 101 well. 102 102 103 - Then, if the the driver did not provide a .match, it matches. If it did, 103 + Then, if the driver did not provide a .match, it matches. If it did, 104 104 the driver match() method is called to determine a match. 105 105 106 106 If it did **not** match, dev->platform_data is reset to indicate this to
+1 -1
Documentation/filesystems/caching/backend-api.rst
··· 122 122 to tell fscache that a volume has been withdrawn. This waits for all 123 123 outstanding accesses on the volume to complete before returning. 124 124 125 - When the the cache is completely withdrawn, fscache should be notified by 125 + When the cache is completely withdrawn, fscache should be notified by 126 126 calling:: 127 127 128 128 void fscache_relinquish_cache(struct fscache_cache *cache);
+1 -1
Documentation/locking/seqlock.rst
··· 39 39 Sequence counters (``seqcount_t``) 40 40 ================================== 41 41 42 - This is the the raw counting mechanism, which does not protect against 42 + This is the raw counting mechanism, which does not protect against 43 43 multiple writers. Write side critical sections must thus be serialized 44 44 by an external lock. 45 45