summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-07-29 02:55:23 (GMT)
committerGitHub <noreply@github.com>2017-07-29 02:55:23 (GMT)
commite05119ad4e8285dfc48050a15ebe0cbaa066e310 (patch)
treee5ca8305d36c4c4ef206232bc7dc176ee70fab04 /Doc
parentecc80b3f1b56f1e4df9e592f8527e622a6b45e01 (diff)
downloadcpython-e05119ad4e8285dfc48050a15ebe0cbaa066e310.zip
cpython-e05119ad4e8285dfc48050a15ebe0cbaa066e310.tar.gz
cpython-e05119ad4e8285dfc48050a15ebe0cbaa066e310.tar.bz2
Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2940)
(cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c)
Diffstat (limited to 'Doc')
-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 96d1424..2f770b6 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.