]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
lib: ratelimit: fix spelling mistake 'seperately'
authorChia-Liang Wang <a0979652527@icloud.com>
Wed, 19 Nov 2025 10:11:44 +0000 (18:11 +0800)
committerAndrew Morton <akpm@linux-foundation.org>
Thu, 20 Nov 2025 22:03:45 +0000 (14:03 -0800)
Corrects a spelling mistake in a comment in ratelimit.c where 'seperately'
was used instead of 'separately'.

Link: https://lkml.kernel.org/r/20251119101144.3175-1-a0979625527@icloud.com
Signed-off-by: Chia-Liang Wang <a0979652527@icloud.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
lib/ratelimit.c

index 859c251b23ce23ec2a643fcc52a29af0e3171276..e2d65d3b1c35456ba8130f5970d97929318d6074 100644 (file)
@@ -27,7 +27,7 @@
 int ___ratelimit(struct ratelimit_state *rs, const char *func)
 {
        /* Paired with WRITE_ONCE() in .proc_handler().
-        * Changing two values seperately could be inconsistent
+        * Changing two values separately could be inconsistent
         * and some message could be lost.  (See: net_ratelimit_state).
         */
        int interval = READ_ONCE(rs->interval);