summaryrefslogtreecommitdiffstats
path: root/Lib
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)
commitbf02d18844ff1087225394083f62e4ee8e1db072 (patch)
treefa9ecd4a068ce2bdf3be245ec30e569eb7ccbc4d /Lib
parentfb45216da81610dc3166237a628cd7bf0db12f0a (diff)
downloadcpython-bf02d18844ff1087225394083f62e4ee8e1db072.zip
cpython-bf02d18844ff1087225394083f62e4ee8e1db072.tar.gz
cpython-bf02d18844ff1087225394083f62e4ee8e1db072.tar.bz2
Fix typos in code comment and documentation
Diffstat (limited to 'Lib')
-rw-r--r--Lib/posixpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index 6578481..8f92822 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -375,7 +375,7 @@ symbolic links encountered in the path."""
path, ok = _joinrealpath('', 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 isabs(rest):