Skip to content

Commit ca94462

Browse files
Fix broken link in asyncio-subprocesses doc (GH-99214)
GH- Fix broken link in Doc/library/asyncio-subprocess.rst This is a trivial fix in documentation to fix a broken link. There is a broken link in [Doc/library/asyncio-subprocess.rst](https://docs.python.org/3/library/asyncio-subprocess.htmlGH-asyncio.subprocess.Process) for the function ``wait_for``: ![image](https://user-images.githubusercontent.com/37690409/200388894-fb6b7c42-b2cc-49ec-a239-e3472890db1f.png) I suppose this refers to the function ``asyncio.wait_for`` which is not clear in the docs. This PR fixes the link and the result looks like the following: ![image](https://user-images.githubusercontent.com/37690409/200389483-b4a92105-7d2c-4285-b0fc-78a6dc0be39c.png) (cherry picked from commit acf4d5d) Co-authored-by: Mikael Koli <[email protected]> Automerge-Triggered-By: GH:AlexWaygood
1 parent 47f4a18 commit ca94462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/asyncio-subprocess.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ their completion.
175175

176176
* the :meth:`~asyncio.subprocess.Process.communicate` and
177177
:meth:`~asyncio.subprocess.Process.wait` methods don't have a
178-
*timeout* parameter: use the :func:`wait_for` function;
178+
*timeout* parameter: use the :func:`~asyncio.wait_for` function;
179179

180180
* the :meth:`Process.wait() <asyncio.subprocess.Process.wait>` method
181181
is asynchronous, whereas :meth:`subprocess.Popen.wait` method

0 commit comments

Comments
 (0)