Correct description of splitext().
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index 4590f8d..014dfe2 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -53,7 +53,7 @@
 
 
 # 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.