]> granicus.if.org Git - python/commitdiff
fixed capitalization of class name (GH-6396) (GH-6397)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 6 Apr 2018 12:46:05 +0000 (05:46 -0700)
committerAlex Gaynor <alex.gaynor@gmail.com>
Fri, 6 Apr 2018 12:46:05 +0000 (08:46 -0400)
(cherry picked from commit 1d87c7b80bf74a3030034a022a7a54ea4e3cdaff)

Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
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.