Fix typo in socketserver docstring (GH-11252)

Fix typo in the docstring of `service_actions`.
serve_forver -> serve_forever
(cherry picked from commit 6ded8986e0)

Co-authored-by: Christopher Hunt <chrahunt@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-12-21 15:01:34 -08:00 committed by GitHub
parent dd3b04ea8c
commit 97d9d90821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ if hasattr(os, "fork"):
def service_actions(self):
"""Collect the zombie child processes regularly in the ForkingMixIn.
service_actions is called in the BaseServer's serve_forver loop.
service_actions is called in the BaseServer's serve_forever loop.
"""
self.collect_children()