]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a typo in subprocess documentation (GH-25426)
authorandrei kulakov <andrei.avk@gmail.com>
Sat, 17 Apr 2021 09:59:18 +0000 (05:59 -0400)
committerGitHub <noreply@github.com>
Sat, 17 Apr 2021 09:59:18 +0000 (11:59 +0200)
Fix a typo per conversation with vstinner on IRC: in posix => on posix.

Doc/library/subprocess.rst

index 07b8ad77655dbeb4d403c81d682c083d560b1051..b60db58d182e6cc7d3f3e0e9b0c4fdfb511a8907 100644 (file)
@@ -543,7 +543,7 @@ functions.
 
    If *cwd* is not ``None``, the function changes the working directory to
    *cwd* before executing the child.  *cwd* can be a string, bytes or
-   :term:`path-like <path-like object>` object.  In POSIX, the function
+   :term:`path-like <path-like object>` object.  On POSIX, the function
    looks for *executable* (or for the first item in *args*) relative to *cwd*
    if the executable path is a relative path.