Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2940)

(cherry picked from commit 6fcb69dad5)
This commit is contained in:
Mariatta 2017-07-28 19:55:23 -07:00 committed by GitHub
parent ecc80b3f1b
commit e05119ad4e
1 changed files with 1 additions and 1 deletions

View File

@ -1024,7 +1024,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.