summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-13 09:50:01 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-03-13 09:50:01 (GMT)
commitd079d3a2892cb40c7020190c6026a69b26383c10 (patch)
tree842be8b9697a40caa6551a0f0bb2be10de28b2e5 /Doc/library
parenta6d018ad6ef05c4b843d92c206f3bf48fdf25653 (diff)
downloadcpython-d079d3a2892cb40c7020190c6026a69b26383c10.zip
cpython-d079d3a2892cb40c7020190c6026a69b26383c10.tar.gz
cpython-d079d3a2892cb40c7020190c6026a69b26383c10.tar.bz2
Close #20787: asyncio doc: fix typo. Patch written by akira.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/asyncio-eventloop.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 171b93b..df84169 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -488,7 +488,7 @@ Run subprocesses asynchronously using the :mod:`subprocess` module.
* *stdout*: Either a file-like object representing the pipe to be connected
to the subprocess's standard output stream using
- :meth:`~BaseEventLoop.connect_write_pipe`, or the constant
+ :meth:`~BaseEventLoop.connect_read_pipe`, or the constant
:const:`subprocess.PIPE` (the default). By default a new pipe will be
created and connected.