]> granicus.if.org Git - python/commitdiff
Fix typo in socketserver docstring (GH-11252)
authorChristopher Hunt <chrahunt@gmail.com>
Fri, 21 Dec 2018 22:22:09 +0000 (17:22 -0500)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 21 Dec 2018 22:22:09 +0000 (14:22 -0800)
Fix typo in the docstring of `service_actions`.
serve_forver -> serve_forever

Lib/socketserver.py

index f0377918e894365aa15be6efd891c1a21c584ad0..905df9319e2fa8d2baeb548df14318f58a0ba2a5 100644 (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()