Skip to content

Commit 20b64bd

Browse files
Docs: Fix typo in socketserver documentation (python#140956)
1 parent d527d3b commit 20b64bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/socketserver.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ The difference is that the ``readline()`` call in the second handler will call
546546
first handler had to use a ``recv()`` loop to accumulate data until a
547547
newline itself. If it had just used a single ``recv()`` without the loop it
548548
would just have returned what has been received so far from the client.
549-
TCP is stream based: data arrives in the order it was sent, but there no
549+
TCP is stream based: data arrives in the order it was sent, but there is no
550550
correlation between client ``send()`` or ``sendall()`` calls and the number
551551
of ``recv()`` calls on the server required to receive it.
552552

0 commit comments

Comments
 (0)