From: Mark Dickinson Date: Wed, 6 Aug 2008 20:12:30 +0000 (+0000) Subject: Docstring typo X-Git-Tag: v2.6b3~124 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9752195a71fb1c4c706fc5d333bb10d38752b114;p=thirdparty%2FPython%2Fcpython.git Docstring typo --- diff --git a/Lib/multiprocessing/connection.py b/Lib/multiprocessing/connection.py index 8a3748c86158..55172e05739f 100644 --- a/Lib/multiprocessing/connection.py +++ b/Lib/multiprocessing/connection.py @@ -209,7 +209,7 @@ else: class SocketListener(object): ''' - Represtation of a socket which is bound to an address and listening + Representation of a socket which is bound to an address and listening ''' def __init__(self, address, family, backlog=1): self._socket = socket.socket(getattr(socket, family))