summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
diff options
context:
space:
mode:
authorYuval Langer <yuval.langer@gmail.com>2017-07-28 17:39:35 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2017-07-28 17:39:35 (GMT)
commit6fcb69dad579cc9a7dc15eabead43b6c37464f8c (patch)
tree321fbe94b54f8289768f65a3790ab41c90e813dd /Doc/library/multiprocessing.rst
parent28ce07ae9e34c70eea6b52515c7e00001cefd41e (diff)
downloadcpython-6fcb69dad579cc9a7dc15eabead43b6c37464f8c.zip
cpython-6fcb69dad579cc9a7dc15eabead43b6c37464f8c.tar.gz
cpython-6fcb69dad579cc9a7dc15eabead43b6c37464f8c.tar.bz2
Fix trivial typo in multiprocessing documentation (GH-2930)
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r--Doc/library/multiprocessing.rst2
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.