From: Guido van Rossum Date: Sat, 30 Apr 2005 00:20:35 +0000 (+0000) Subject: Fixed a typo in docstring I happened upon. X-Git-Tag: v2.5a0~1797 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ebbffd42f3d96f93b7334ce1c5ea2e6da0a0754f;p=python Fixed a typo in docstring I happened upon. --- diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py index 345a6d16e1..1e846fe246 100644 --- a/Lib/SocketServer.py +++ b/Lib/SocketServer.py @@ -50,7 +50,7 @@ stream server is the address family, which is simply repeated in both unix server classes. Forking and threading versions of each type of server can be created -using the ForkingServer and ThreadingServer mix-in classes. For +using the ForkingMixIn and ThreadingMixIn mix-in classes. For instance, a threading UDP server class is created as follows: class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass