From 79e4fed9ffe67b6c744b454500753ce44f026af5 Mon Sep 17 00:00:00 2001 From: David Lin Date: Sat, 13 Jun 2020 10:52:54 +0800 Subject: [PATCH] Update udpclient.c This is 'udp client', not is 'tcp client', so tcpclient -> udpclient --- examples/network/udpclient.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/network/udpclient.c b/examples/network/udpclient.c index cd870cd758..449fb5af62 100644 --- a/examples/network/udpclient.c +++ b/examples/network/udpclient.c @@ -117,8 +117,8 @@ static void udpclient_test(int argc, char** argv) { if (started) { - LOG_I("The tcpclient has started!"); - LOG_I("Please stop tcpclient firstly, by: tcpclient --stop"); + LOG_I("The udpclient has started!"); + LOG_I("Please stop udpclient firstly, by: udpclient --stop"); return; }