]> granicus.if.org Git - python/commitdiff
Close #20787: asyncio doc: fix typo. Patch written by akira.
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 13 Mar 2014 09:50:01 +0000 (10:50 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 13 Mar 2014 09:50:01 +0000 (10:50 +0100)
Doc/library/asyncio-eventloop.rst

index 171b93bbc718bb34913ba8347892c7f5fce74301..df8416959f133f64d07b779748859f18798d2f4e 100644 (file)
@@ -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.