commit | 419f1fa9bcd05167c91479348f9c8403d1c77cab | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon May 26 15:10:42 2014 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Mon May 26 15:10:42 2014 -0700 |
tree | 17f5bc4bd3d279f8ceab5688fb4fe3f368734e17 | |
parent | dea46ec9654a6412e74a6f8dfbdf97ff97516670 [diff] |
fix typo in variable name (closes #21586)
diff --git a/Doc/howto/sockets.rst b/Doc/howto/sockets.rst index 820beb5..c04fd55 100644 --- a/Doc/howto/sockets.rst +++ b/Doc/howto/sockets.rst
@@ -210,7 +210,7 @@ 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)