From 37809d703364f512d446416aa864b9ed729882c1 Mon Sep 17 00:00:00 2001 From: David Zurow Date: Thu, 26 Oct 2023 02:33:10 -0400 Subject: [PATCH] Fix typo in TCP server test readme.md --- tests/circuitpython-manual/socketpool/server/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/circuitpython-manual/socketpool/server/readme.md b/tests/circuitpython-manual/socketpool/server/readme.md index 26118b8f12..fd2482d0ea 100644 --- a/tests/circuitpython-manual/socketpool/server/readme.md +++ b/tests/circuitpython-manual/socketpool/server/readme.md @@ -1,4 +1,4 @@ -# Circuitpython as Client +# Circuitpython as Server This example demonstrates the use of Socket as a server, accessed by a client program on a host development machine. This Circuitpython sketch uses the Bind, Listen, Accept, and recvfrom_into calls.