From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 6 Apr 2018 12:46:05 +0000 (-0700) Subject: fixed capitalization of class name (GH-6396) (GH-6397) X-Git-Tag: v3.7.0b4~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=252f10cbac0132924faed8de44ed7b15e774cbcb;p=python fixed capitalization of class name (GH-6396) (GH-6397) (cherry picked from commit 1d87c7b80bf74a3030034a022a7a54ea4e3cdaff) Co-authored-by: Alex Gaynor --- diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst index 278ae55375..16cfa1798a 100644 --- a/Doc/library/http.server.rst +++ b/Doc/library/http.server.rst @@ -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.