[Python-checkins] cpython: Closes #19200: small grammar fix in multiprocessing docs. Thanks to Elazar

georg.brandl python-checkins at python.org
Wed Oct 9 15:51:11 CEST 2013


http://hg.python.org/cpython/rev/c0f3d18d79fd
changeset:   86186:c0f3d18d79fd
user:        Georg Brandl <georg at python.org>
date:        Wed Oct 09 15:51:57 2013 +0200
summary:
  Closes #19200: small grammar fix in multiprocessing docs. Thanks to Elazar Gershuni.

files:
  Doc/library/multiprocessing.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -126,7 +126,7 @@
   *forkserver*
     When the program starts and selects the *forkserver* start method,
     a server process is started.  From then on, whenever a new process
-    is need the parent process connects to the server and requests
+    is needed, the parent process connects to the server and requests
     that it fork a new process.  The fork server process is single
     threaded so it is safe for it to use :func:`os.fork`.  No
     unnecessary resources are inherited.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list