summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChia-Liang Wang <a0979652527@icloud.com>2025-11-19 18:11:44 +0800
committerAndrew Morton <akpm@linux-foundation.org>2025-11-20 14:03:45 -0800
commitff713698bad2e7d052960cf182fa1ab465564dfd (patch)
treecc384a1d6ea2849b8e33fe5954cdfdb34d8523dc /lib
parent2fe869ecbd06eaa37a77cd58c583f4231ce7de04 (diff)
lib: ratelimit: fix spelling mistake 'seperately'
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>
Diffstat (limited to 'lib')
-rw-r--r--lib/ratelimit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ratelimit.c b/lib/ratelimit.c
index 859c251b23ce..e2d65d3b1c35 100644
--- a/lib/ratelimit.c
+++ b/lib/ratelimit.c
@@ -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);