From: Yuval Langer Date: Fri, 28 Jul 2017 17:39:35 +0000 (+0300) Subject: Fix trivial typo in multiprocessing documentation (GH-2930) X-Git-Tag: v3.7.0a1~347 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6fcb69dad579cc9a7dc15eabead43b6c37464f8c;p=python Fix trivial typo in multiprocessing documentation (GH-2930) --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 9318a75091..8d6d8707a0 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -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.