diff options
author | Ned Deily <nad@python.org> | 2016-06-04 16:41:05 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2016-06-04 16:41:05 (GMT) |
commit | 7a3827f61f8d3875bd2611aee5f5a5e5e2913907 (patch) | |
tree | 4db20453a6527b46a7a28617cbdd0b650c787fcf | |
parent | 32eeb56f42b201f0c72a6a9ba64fd5eeda1da8db (diff) | |
parent | 32db43867c5762874cdd1ff0ac71c9bf5640f5b8 (diff) | |
download | cpython-7a3827f61f8d3875bd2611aee5f5a5e5e2913907.zip cpython-7a3827f61f8d3875bd2611aee5f5a5e5e2913907.tar.gz cpython-7a3827f61f8d3875bd2611aee5f5a5e5e2913907.tar.bz2 |
Issue 27216: Fix typo (noticed by Alex Chan).
-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) |