summaryrefslogtreecommitdiffstats
path: root/Lib/posixpath.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-04-16 09:28:57 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-04-16 09:28:57 (GMT)
commit119e502277d104286620806ef130e3c0d4f439f0 (patch)
tree78150447a369c7e43f4eb8b7a901655f6e66894e /Lib/posixpath.py
parent00ccacc8db8194f15d8af26b788ec36314b990d1 (diff)
downloadcpython-119e502277d104286620806ef130e3c0d4f439f0.zip
cpython-119e502277d104286620806ef130e3c0d4f439f0.tar.gz
cpython-119e502277d104286620806ef130e3c0d4f439f0.tar.bz2
Fix typos in code comments and documentation
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r--Lib/posixpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index 09b8897..7bb4d59 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -372,7 +372,7 @@ symbolic links encountered in the path."""
path, ok = _joinrealpath(filename[:0], filename, {})
return abspath(path)
-# Join two paths, normalizing ang eliminating any symbolic links
+# Join two paths, normalizing and eliminating any symbolic links
# encountered in the second path.
def _joinrealpath(path, rest, seen):
if isinstance(path, bytes):