[Python-checkins] Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2940)
Mariatta
webhook-mailer at python.org
Fri Jul 28 22:55:26 EDT 2017
https://github.com/python/cpython/commit/e05119ad4e8285dfc48050a15ebe0cbaa066e310
commit: e05119ad4e8285dfc48050a15ebe0cbaa066e310
branch: 3.6
author: Mariatta <Mariatta at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2017-07-28T19:55:23-07:00
summary:
Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2940)
(cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c)
files:
M Doc/library/multiprocessing.rst
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 96d1424126c..2f770b63223 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.
More information about the Python-checkins
mailing list