diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 12:43:51 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-17 12:43:51 (GMT) |
commit | f5469cff1f90381819291bcddcc70f5aaf2da141 (patch) | |
tree | f61191eac7db34346674d3b5dca6cfc334dcca99 /Lib/genericpath.py | |
parent | 10b513098af5323bc2e9dee4775531eb63c1f0ab (diff) | |
download | cpython-f5469cff1f90381819291bcddcc70f5aaf2da141.zip cpython-f5469cff1f90381819291bcddcc70f5aaf2da141.tar.gz cpython-f5469cff1f90381819291bcddcc70f5aaf2da141.tar.bz2 |
#18705: fix a number of typos. Patch by Févry Thibault.
Diffstat (limited to 'Lib/genericpath.py')
-rw-r--r-- | Lib/genericpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/genericpath.py b/Lib/genericpath.py index a0bf601..7ddb94c 100644 --- a/Lib/genericpath.py +++ b/Lib/genericpath.py @@ -22,7 +22,7 @@ def exists(path): # This follows symbolic links, so both islink() and isdir() can be true -# for the same path ono systems that support symlinks +# for the same path on systems that support symlinks def isfile(path): """Test whether a path is a regular file""" try: |