]> granicus.if.org Git - python/commitdiff
Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2942)
authorMariatta <Mariatta@users.noreply.github.com>
Sat, 29 Jul 2017 02:55:04 +0000 (19:55 -0700)
committerGitHub <noreply@github.com>
Sat, 29 Jul 2017 02:55:04 +0000 (19:55 -0700)
(cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c)

Doc/library/multiprocessing.rst

index b393ad134511912679a3be34ce66d04011a3892d..97a7b536670ea6cd72aea6dd3184868d124d6256 100644 (file)
@@ -822,7 +822,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.