summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2018-04-06 12:26:49 (GMT)
committerGitHub <noreply@github.com>2018-04-06 12:26:49 (GMT)
commit1d87c7b80bf74a3030034a022a7a54ea4e3cdaff (patch)
treee9c4728a7350e4937b98109ee57ba253b7e7da1f /Doc
parent0c1c4563a65ac451021d927058e4f25013934eb2 (diff)
downloadcpython-1d87c7b80bf74a3030034a022a7a54ea4e3cdaff.zip
cpython-1d87c7b80bf74a3030034a022a7a54ea4e3cdaff.tar.gz
cpython-1d87c7b80bf74a3030034a022a7a54ea4e3cdaff.tar.bz2
fixed capitalization of class name (GH-6396)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/http.server.rst2
1 files changed, 1 insertions, 1 deletions
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.