From: Benjamin Peterson Date: Mon, 26 May 2014 22:10:42 +0000 (-0700) Subject: fix typo in variable name (closes #21586) X-Git-Tag: v2.7.8~37^2~80 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2eff14d3333073b39082caa798c2d43f5d8c28e4;p=thirdparty%2FPython%2Fcpython.git fix typo in variable name (closes #21586) --- diff --git a/Doc/howto/sockets.rst b/Doc/howto/sockets.rst index 0a7fcf5c0c26..f8ac34850b9a 100644 --- a/Doc/howto/sockets.rst +++ b/Doc/howto/sockets.rst @@ -213,7 +213,7 @@ length message:: chunk = self.sock.recv(min(MSGLEN - bytes_recd, 2048)) if chunk == '': raise RuntimeError("socket connection broken") - chucks.append(chunk) + chunks.append(chunk) bytes_recd = bytes_recd + len(chunk) return ''.join(chunks)