diff options
author | Ned Deily <nad@python.org> | 2016-06-04 16:39:42 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2016-06-04 16:39:42 (GMT) |
commit | 06cd1c3d36ff7c38ba2e4836a8b83ea64df3ab29 (patch) | |
tree | 595c07152b4836951186b8b8788bb1f54564d702 /Doc | |
parent | 0ba3c803ea2881a4b518019a913f9ad0f7cdd1a1 (diff) | |
download | cpython-06cd1c3d36ff7c38ba2e4836a8b83ea64df3ab29.zip cpython-06cd1c3d36ff7c38ba2e4836a8b83ea64df3ab29.tar.gz cpython-06cd1c3d36ff7c38ba2e4836a8b83ea64df3ab29.tar.bz2 |
Issue 27216: Fix typo (noticed by Alex Chan).
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.path.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index dc5d588..5d7edd1 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -185,7 +185,7 @@ the :mod:`glob` module.) .. function:: islink(path) Return ``True`` if *path* refers to a directory entry that is a symbolic link. - Always ``False`` if symbolic links are not supported by the python runtime. + Always ``False`` if symbolic links are not supported by the Python runtime. .. function:: ismount(path) |