]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Correct description of splitext().
authorGuido van Rossum <guido@python.org>
Tue, 20 Aug 1996 20:24:17 +0000 (20:24 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 20 Aug 1996 20:24:17 +0000 (20:24 +0000)
Lib/posixpath.py

index 4590f8dc31e42b903b09cac50810b234a40dca28..014dfe2798390f5e1058e3d561906c38a3c88863 100644 (file)
@@ -53,7 +53,7 @@ def split(p):
 
 
 # Split a path in root and extension.
-# The extension is everything starting at the first dot in the last
+# The extension is everything starting at the last dot in the last
 # pathname component; the root is everything before that.
 # It is always true that root + ext == p.