]> granicus.if.org Git - python/commitdiff
Fix whatsnew entry about ThreadedHTTPServer. (GH-7220)
authorJulien Palard <julien@palard.fr>
Tue, 29 May 2018 22:44:12 +0000 (00:44 +0200)
committerGitHub <noreply@github.com>
Tue, 29 May 2018 22:44:12 +0000 (00:44 +0200)
Doc/whatsnew/3.7.rst

index 8b94cdcc9e6aca806327706461434d3df5de70a7..2471989ec7b95ce68b7368209bca9f239f820075 100644 (file)
@@ -929,7 +929,7 @@ With this parameter, the server serves the specified directory, by default it
 uses the current working directory.
 (Contributed by Stéphane Wirtel and Julien Palard in :issue:`28707`.)
 
-The new :class:`ThreadedHTTPServer <http.server.ThreadedHTTPServer>` class
+The new :class:`ThreadingHTTPServer <http.server.ThreadingHTTPServer>` class
 uses threads to handle requests using :class:`~socketserver.ThreadingMixin`.
 It is used when ``http.server`` is run with ``-m``.
 (Contributed by Julien Palard in :issue:`31639`.)