diff options
author | andrei kulakov <andrei.avk@gmail.com> | 2021-04-17 09:59:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 09:59:18 (GMT) |
commit | ea39f82b97e0625334af560ef9876684d8e5abeb (patch) | |
tree | 7452fa40d01debce6537dc2f051f2fd450e9ddcd /Doc | |
parent | 39258d3595300bc7b952854c915f63ae2d4b9c3e (diff) | |
download | cpython-ea39f82b97e0625334af560ef9876684d8e5abeb.zip cpython-ea39f82b97e0625334af560ef9876684d8e5abeb.tar.gz cpython-ea39f82b97e0625334af560ef9876684d8e5abeb.tar.bz2 |
Fix a typo in subprocess documentation (GH-25426)
Fix a typo per conversation with vstinner on IRC: in posix => on posix.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/subprocess.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index 07b8ad7..b60db58 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -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. |