diff options
author | Ned Deily <nad@python.org> | 2016-06-04 16:40:40 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2016-06-04 16:40:40 (GMT) |
commit | 32db43867c5762874cdd1ff0ac71c9bf5640f5b8 (patch) | |
tree | 1d6cf4bf0b4dce52e2bcd64647a428e30ad084ef /Doc | |
parent | 29ce082c10abe32ff9e9991d42c244d4ab3101b7 (diff) | |
download | cpython-32db43867c5762874cdd1ff0ac71c9bf5640f5b8.zip cpython-32db43867c5762874cdd1ff0ac71c9bf5640f5b8.tar.gz cpython-32db43867c5762874cdd1ff0ac71c9bf5640f5b8.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 4b4e0b4..3703a20 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -214,7 +214,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) |