Fix trivial typo in multiprocessing documentation (GH-2930)

This commit is contained in:
Yuval Langer 2017-07-28 20:39:35 +03:00 committed by Mariatta
parent 28ce07ae9e
commit 6fcb69dad5

View 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.