From b05c330e997b6f236f4ac904d8dcb2aa64c61f1c Mon Sep 17 00:00:00 2001 From: Rohan Santhosh Kumar <181558744+Rohan5commit@users.noreply.github.com> Date: Tue, 28 Apr 2026 10:32:20 +0800 Subject: [PATCH] docs: fix the is_socket_readable docstring typo --- httpcore/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpcore/_utils.py b/httpcore/_utils.py index c44ff93c..ac64422b 100644 --- a/httpcore/_utils.py +++ b/httpcore/_utils.py @@ -7,7 +7,7 @@ def is_socket_readable(sock: socket.socket | None) -> bool: """ - Return whether a socket, as identifed by its file descriptor, is readable. + Return whether a socket, as identified by its file descriptor, is readable. "A socket is readable" means that the read buffer isn't empty, i.e. that calling .recv() on it would immediately return some data. """