From: Mariatta Date: Sat, 29 Jul 2017 02:55:23 +0000 (-0700) Subject: Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2940) X-Git-Tag: v3.6.3rc1~188 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e05119ad4e8285dfc48050a15ebe0cbaa066e310;p=python Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2940) (cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c) --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 96d1424126..2f770b6322 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -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.