From 1d87c7b80bf74a3030034a022a7a54ea4e3cdaff Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 6 Apr 2018 08:26:49 -0400 Subject: fixed capitalization of class name (GH-6396) --- Doc/library/http.server.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst index 278ae55..16cfa17 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. -- cgit v0.12