[PATCH] lib: ratelimit: Fix spelling mistake 'seperately'

Chia-Liang Wang posted 1 patch 1 week, 5 days ago
lib/ratelimit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] lib: ratelimit: Fix spelling mistake 'seperately'
Posted by Chia-Liang Wang 1 week, 5 days ago
From: Chia-Liang Wang <a0979652527@icloud.com>

Corrects a spelling mistake in a comment in ratelimit.c where
'seperately' was used instead of 'separately'.

Signed-off-by: Chia-Liang Wang <a0979652527@icloud.com>
---
 lib/ratelimit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
-- 
2.43.0