diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2017-07-29 02:56:13 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2017-08-07 07:34:16 (GMT) |
commit | b672a4528009c94db65b4ead31a98f62b4a55557 (patch) | |
tree | aef261f2ef3b78851345d2c54c630bd118f9bd97 | |
parent | abe7b60b80f5cb23f84a49f95ef6ce23521eed14 (diff) | |
download | cpython-b672a4528009c94db65b4ead31a98f62b4a55557.zip cpython-b672a4528009c94db65b4ead31a98f62b4a55557.tar.gz cpython-b672a4528009c94db65b4ead31a98f62b4a55557.tar.bz2 |
Fix trivial typo in multiprocessing documentation (GH-2930) (GH-2941)
(cherry picked from commit 6fcb69dad579cc9a7dc15eabead43b6c37464f8c)
(cherry picked from commit 52c41f18086f3d8b1eb3854b568f04717c724e3d)
-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 d45bc20..04ce8d8 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1018,7 +1018,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. |