[3.14] Docs: Fix typo in socketserver documentation (GH-140956) (#141799)

Co-authored-by: Thomas Ballard <thomasballard0503@gmail.com>
This commit is contained in:
Miss Islington (bot) 2025-11-20 17:35:09 +01:00 committed by GitHub
parent 1253a8b2df
commit 730ff82bdf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -544,7 +544,7 @@ The difference is that the ``readline()`` call in the second handler will call
first handler had to use a ``recv()`` loop to accumulate data until a
newline itself. If it had just used a single ``recv()`` without the loop it
would just have returned what has been received so far from the client.
TCP is stream based: data arrives in the order it was sent, but there no
TCP is stream based: data arrives in the order it was sent, but there is no
correlation between client ``send()`` or ``sendall()`` calls and the number
of ``recv()`` calls on the server required to receive it.