fixed capitalization of class name (GH-6396)

This commit is contained in:
Alex Gaynor 2018-04-06 08:26:49 -04:00 committed by GitHub
parent 0c1c4563a6
commit 1d87c7b80b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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.