]> granicus.if.org Git - python/commitdiff
Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2941)
authorMariatta <Mariatta@users.noreply.github.com>
Sat, 29 Jul 2017 02:56:13 +0000 (19:56 -0700)
committerLarry Hastings <larry@hastings.org>
Mon, 7 Aug 2017 07:34:16 +0000 (00:34 -0700)
(cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c)
(cherry picked from commit 52c41f18086f3d8b1eb3854b568f04717c724e3d)

Doc/library/multiprocessing.rst

index d45bc2065dc0f337c2cd48fcff160526d0eb061e..04ce8d86c171bd3452cd27d4f65929828726cf82 100644 (file)
@@ -1018,7 +1018,7 @@ Connection objects are usually created using :func:`Pipe` -- see also
    .. method:: recv()
 
       Return an object sent from the other end of the connection using
-      :meth:`send`.  Blocks until there its something to receive.  Raises
+      :meth:`send`.  Blocks until there is something to receive.  Raises
       :exc:`EOFError` if there is nothing left to receive
       and the other end was closed.