diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-31 00:26:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 00:26:06 (GMT) |
commit | 3f819ca138db6945ee4271bf13e42db9f9b3b1e4 (patch) | |
tree | 7eab13b4f9da0c8936d423cd633594cf83ba870f /Doc/library/stat.rst | |
parent | 68f323715e6627c550d1e8ffed7e36f1bb4aa42b (diff) | |
download | cpython-3f819ca138db6945ee4271bf13e42db9f9b3b1e4.zip cpython-3f819ca138db6945ee4271bf13e42db9f9b3b1e4.tar.gz cpython-3f819ca138db6945ee4271bf13e42db9f9b3b1e4.tar.bz2 |
bpo-35110: Fix unintentional spaces around hyphens and dashes. (GH-10231)
Diffstat (limited to 'Doc/library/stat.rst')
-rw-r--r-- | Doc/library/stat.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/stat.rst b/Doc/library/stat.rst index b256312..c8f6904 100644 --- a/Doc/library/stat.rst +++ b/Doc/library/stat.rst @@ -81,9 +81,9 @@ mode: .. function:: S_IMODE(mode) - Return the portion of the file's mode that can be set by :func:`os.chmod`\ - ---that is, the file's permission bits, plus the sticky bit, set-group-id, and - set-user-id bits (on systems that support them). + Return the portion of the file's mode that can be set by + :func:`os.chmod`\ ---that is, the file's permission bits, plus the sticky + bit, set-group-id, and set-user-id bits (on systems that support them). .. function:: S_IFMT(mode) |