diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-16 23:59:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 23:59:12 (GMT) |
commit | d49877e6e745b9c3564bc86a81f4d05038f2b45b (patch) | |
tree | 196f94639e7f9948ecd9e3506e12e4600058705b /Doc/library | |
parent | d22fa22cca60df1ed8860b62732efa630943c7bd (diff) | |
download | cpython-d49877e6e745b9c3564bc86a81f4d05038f2b45b.zip cpython-d49877e6e745b9c3564bc86a81f4d05038f2b45b.tar.gz cpython-d49877e6e745b9c3564bc86a81f4d05038f2b45b.tar.bz2 |
[doc] Fix typo in os module (GH-24464)
Automerge-Triggered-By: GH:iritkatriel
(cherry picked from commit fdc7e52f5f1853e350407c472ae031339ac7f60c)
Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 24ba153..4b249ed 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -4635,7 +4635,7 @@ operating system. .. function:: sched_setparam(pid, param) - Set a scheduling parameters for the process with PID *pid*. A *pid* of 0 means + Set the scheduling parameters for the process with PID *pid*. A *pid* of 0 means the calling process. *param* is a :class:`sched_param` instance. |