From 363f8fd125c3ed3a5043f694579271d49189dcac Mon Sep 17 00:00:00 2001 From: Shunchao Hu Date: Wed, 25 Mar 2026 14:34:35 +0800 Subject: [PATCH] drivers/net/telnet: Fix typo. This commit fixed code comment typo in telnet.c. Signed-off-by: Shunchao Hu --- drivers/net/telnet.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/telnet.c b/drivers/net/telnet.c index e492517f344..08c23e0dbbf 100644 --- a/drivers/net/telnet.c +++ b/drivers/net/telnet.c @@ -209,9 +209,9 @@ static const struct file_operations g_factory_fops = factory_ioctl, /* ioctl */ }; -/* This is an global data set of all of all active Telnet drivers. This - * additional logic in included to handle killing of task via control - * characters received via Telenet (via Ctrl-C SIGINT, in particular). +/* This is a global data set of all active Telnet drivers. This + * additional logic is included to handle killing tasks via control + * characters received via Telnet (via Ctrl-C SIGINT, in particular). */ static struct telnet_dev_s *g_telnet_clients[CONFIG_TELNET_MAXLCLIENTS];