From 419f1fa9bcd05167c91479348f9c8403d1c77cab Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 26 May 2014 15:10:42 -0700 Subject: [PATCH] fix typo in variable name (closes #21586) --- Doc/howto/sockets.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/sockets.rst b/Doc/howto/sockets.rst index 820beb5cff..c04fd5577f 100644 --- a/Doc/howto/sockets.rst +++ b/Doc/howto/sockets.rst @@ -210,7 +210,7 @@ length message:: chunk = self.sock.recv(min(MSGLEN - bytes_recd, 2048)) if chunk == b'': raise RuntimeError("socket connection broken") - chucks.append(chunk) + chunks.append(chunk) bytes_recd = bytes_recd + len(chunk) return b''.join(chunks) -- 2.40.0