]> granicus.if.org Git - python/commitdiff
Fixed a typo in docstring I happened upon.
authorGuido van Rossum <guido@python.org>
Sat, 30 Apr 2005 00:20:35 +0000 (00:20 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 30 Apr 2005 00:20:35 +0000 (00:20 +0000)
Lib/SocketServer.py

index 345a6d16e161de85170daccf34cd6289cd22d2d7..1e846fe2463be1d573fb5a7a86f76d6096d4dca7 100644 (file)
@@ -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