From: Victor Stinner Date: Thu, 13 Mar 2014 09:50:01 +0000 (+0100) Subject: Close #20787: asyncio doc: fix typo. Patch written by akira. X-Git-Tag: v3.4.1rc1~233^2~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d079d3a2892cb40c7020190c6026a69b26383c10;p=python Close #20787: asyncio doc: fix typo. Patch written by akira. --- diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index 171b93bbc7..df8416959f 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.