[Python-checkins] fixed capitalization of class name (GH-6396)
Alex Gaynor
webhook-mailer at python.org
Fri Apr 6 08:26:52 EDT 2018
https://github.com/python/cpython/commit/1d87c7b80bf74a3030034a022a7a54ea4e3cdaff
commit: 1d87c7b80bf74a3030034a022a7a54ea4e3cdaff
branch: master
author: Alex Gaynor <alex.gaynor at gmail.com>
committer: GitHub <noreply at github.com>
date: 2018年04月06日T08:26:49-04:00
summary:
fixed capitalization of class name (GH-6396)
files:
M Doc/library/http.server.rst
diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst
index 278ae5537504..16cfa1798aef 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.
More information about the Python-checkins
mailing list