diff options
author | Yuval Langer <yuval.langer@gmail.com> | 2017-07-28 17:39:35 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-07-28 17:39:35 (GMT) |
commit | 6fcb69dad579cc9a7dc15eabead43b6c37464f8c (patch) | |
tree | 321fbe94b54f8289768f65a3790ab41c90e813dd | |
parent | 28ce07ae9e34c70eea6b52515c7e00001cefd41e (diff) | |
download | cpython-6fcb69dad579cc9a7dc15eabead43b6c37464f8c.zip cpython-6fcb69dad579cc9a7dc15eabead43b6c37464f8c.tar.gz cpython-6fcb69dad579cc9a7dc15eabead43b6c37464f8c.tar.bz2 |
Fix trivial typo in multiprocessing documentation (GH-2930)
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 9318a75..8d6d870 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. |