[Python-checkins] Fix trivial typo in multiprocessing documentation (GH-2930)
Mariatta
webhook-mailer at python.org
Fri Jul 28 13:39:40 EDT 2017
https://github.com/python/cpython/commit/6fcb69dad579cc9a7dc15eabead43b6c37464f8c
commit: 6fcb69dad579cc9a7dc15eabead43b6c37464f8c
branch: master
author: Yuval Langer <yuval.langer at gmail.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2017年07月28日T10:39:35-07:00
summary:
Fix trivial typo in multiprocessing documentation (GH-2930)
files:
M Doc/library/multiprocessing.rst
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 9318a750919..8d6d8707a0e 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.
More information about the Python-checkins
mailing list