]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: Fix typo in socketserver documentation (#140956)
authorThomas Ballard <thomasballard0503@gmail.com>
Mon, 17 Nov 2025 11:47:28 +0000 (06:47 -0500)
committerGitHub <noreply@github.com>
Mon, 17 Nov 2025 11:47:28 +0000 (13:47 +0200)
Doc/library/socketserver.rst

index 7bc2f7afbbb0b1eb16d5ff4b41b59933bbce0243..491b8769f44fe2006af3965d78c60471b5755448 100644 (file)
@@ -546,7 +546,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.