]> granicus.if.org Git - python/commitdiff
fixed capitalization of class name (GH-6396)
authorAlex Gaynor <alex.gaynor@gmail.com>
Fri, 6 Apr 2018 12:26:49 +0000 (08:26 -0400)
committerGitHub <noreply@github.com>
Fri, 6 Apr 2018 12:26:49 +0000 (08:26 -0400)
Doc/library/http.server.rst

index 278ae5537504566e3ed890e02266bb339d6a7bbe..16cfa1798aef3738a10089ee3ba07816db3f1730 100644 (file)
@@ -36,7 +36,7 @@ handler.  Code to create and run the server looks like this::
 .. class:: ThreadedHTTPServer(server_address, RequestHandlerClass)
 
    This class is identical to HTTPServer but uses threads to handle
-   requests by using the :class:`~socketserver.ThreadingMixin`. This
+   requests by using the :class:`~socketserver.ThreadingMixIn`. This
    is useful to handle web browsers pre-opening sockets, on which
    :class:`HTTPServer` would wait indefinitely.