fixed capitalization of class name (GH-6396) (GH-6397)

(cherry picked from commit 1d87c7b80b)

Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-04-06 05:46:05 -07:00 committed by Alex Gaynor
parent 64421d9237
commit 252f10cbac

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.