From: Chia-Liang Wang Date: Wed, 19 Nov 2025 10:11:44 +0000 (+0800) Subject: lib: ratelimit: fix spelling mistake 'seperately' X-Git-Tag: v6.19-rc1~70^2~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff713698bad2e7d052960cf182fa1ab465564dfd;p=thirdparty%2Flinux.git 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 Signed-off-by: Andrew Morton --- diff --git a/lib/ratelimit.c b/lib/ratelimit.c index 859c251b23ce2..e2d65d3b1c354 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);