]> granicus.if.org Git - python/commitdiff
Fix "seperate".
authorGeorg Brandl <georg@python.org>
Thu, 9 Dec 2010 18:08:43 +0000 (18:08 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 9 Dec 2010 18:08:43 +0000 (18:08 +0000)
Doc/library/concurrent.futures.rst
Lib/concurrent/futures/process.py

index a7a2c394632e983577abdfb5897f9de8e8c0cedd..3b74aa88bfc6c8ac9173dcfb46960257cc60d990 100644 (file)
@@ -10,7 +10,7 @@ The :mod:`concurrent.futures` module provides a high-level interface for
 asynchronously executing callables.
 
 The asynchronous execution can be be performed with threads, using
-:class:`ThreadPoolExecutor`, or seperate processes, using
+:class:`ThreadPoolExecutor`, or separate processes, using
 :class:`ProcessPoolExecutor`.  Both implement the same interface, which is
 defined by the abstract :class:`Executor` class.
 
index 36a40d3142fc0a07eea14a5809d898094be090c5..f461b7777dbbb76a78beb3fb61a8414e0f42d418 100644 (file)
@@ -118,7 +118,7 @@ class _CallItem(object):
 def _process_worker(call_queue, result_queue, shutdown):
     """Evaluates calls from call_queue and places the results in result_queue.
 
-    This worker is run in a seperate process.
+    This worker is run in a separate process.
 
     Args:
         call_queue: A multiprocessing.Queue of _CallItems that will be read and