From 57648909769a9c49c632ee33f8985fc6a22a5199 Mon Sep 17 00:00:00 2001 From: Yuval Langer Date: Fri, 28 Jul 2017 20:39:35 +0300 Subject: [PATCH] [2.7] Fix trivial typo in multiprocessing documentation (GH-2930) (cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c) --- Doc/library/multiprocessing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index b393ad13451191..97a7b536670ea6 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -822,7 +822,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.