summaryrefslogtreecommitdiff
path: root/Doc/library/basehttpserver.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/basehttpserver.rst')
-rw-r--r--Doc/library/basehttpserver.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/basehttpserver.rst b/Doc/library/basehttpserver.rst
index 7d50613438..0fbf8b0687 100644
--- a/Doc/library/basehttpserver.rst
+++ b/Doc/library/basehttpserver.rst
@@ -21,7 +21,7 @@ Usually, this module isn't used directly, but is used as a basis for building
functioning Web servers. See the :mod:`SimpleHTTPServer` and
:mod:`CGIHTTPServer` modules.
-The first class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer`
+The first class, :class:`HTTPServer`, is a :class:`SocketServer.TCPServer`
subclass. It creates and listens at the HTTP socket, dispatching the requests
to a handler. Code to create and run the server looks like this::