summaryrefslogtreecommitdiffstats
path: root/Lib/SocketServer.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2005-04-30 00:20:35 (GMT)
committerGuido van Rossum <guido@python.org>2005-04-30 00:20:35 (GMT)
commitebbffd42f3d96f93b7334ce1c5ea2e6da0a0754f (patch)
tree0fb6ee71cc230468f780111353478756f7e2d351 /Lib/SocketServer.py
parentb56b494bea693b1f7f695ad302de0a9b440553b7 (diff)
downloadcpython-ebbffd42f3d96f93b7334ce1c5ea2e6da0a0754f.zip
cpython-ebbffd42f3d96f93b7334ce1c5ea2e6da0a0754f.tar.gz
cpython-ebbffd42f3d96f93b7334ce1c5ea2e6da0a0754f.tar.bz2
Fixed a typo in docstring I happened upon.
Diffstat (limited to 'Lib/SocketServer.py')
-rw-r--r--Lib/SocketServer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/SocketServer.py b/Lib/SocketServer.py
index 345a6d1..1e846fe 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