[HUST CSE][example] fix some typo bugs about 'sucess' and others. (#7528)

This commit is contained in:
shandianchengzi
2023-05-18 10:42:44 -04:00
committed by GitHub
parent c349fe68b8
commit a294d7da9a
15 changed files with 39 additions and 39 deletions
+2 -2
View File
@@ -605,7 +605,7 @@ void tcpclient(int argc, char**argv)
else if (bytes_received == 0)
{
/* Print the recv function returns a warning message with a value of 0 */
rt_kprintf("\nReceived warning,recv function return 0.\r\n");
rt_kprintf("\nReceived warning,recv function returns 0.\r\n");
continue;
}
@@ -643,7 +643,7 @@ void tcpclient(int argc, char**argv)
else if (ret == 0)
{
/* Print the send function returns a warning message with a value of 0 */
rt_kprintf("\n Send warning,send function return 0.\r\n");
rt_kprintf("\n Send warning,send function returns 0.\r\n");
}
}
return;