This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch releases/12.13
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/releases/12.13 by this push:
     new 363f8fd125c drivers/net/telnet: Fix typo.
363f8fd125c is described below

commit 363f8fd125c3ed3a5043f694579271d49189dcac
Author: Shunchao Hu <[email protected]>
AuthorDate: Wed Mar 25 14:34:35 2026 +0800

    drivers/net/telnet: Fix typo.
    
    This commit fixed code comment typo in telnet.c.
    
    Signed-off-by: Shunchao Hu <[email protected]>
---
 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];

Reply via email to