]> granicus.if.org Git - python/commitdiff
Fix trivial typo in multiprocessing documentation (GH-2930)
authorYuval Langer <yuval.langer@gmail.com>
Fri, 28 Jul 2017 17:39:35 +0000 (20:39 +0300)
committerMariatta <Mariatta@users.noreply.github.com>
Fri, 28 Jul 2017 17:39:35 +0000 (10:39 -0700)
Doc/library/multiprocessing.rst

index 9318a750919b67f9c7da299ed5577134fa52efe9..8d6d8707a0e1bc350b9dcb97eacb10c5200ea580 100644 (file)
@@ -1040,7 +1040,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.