[Python-checkins] r46940 - python/trunk/Lib/difflib.py

tim.peters python-checkins at python.org
Wed Jun 14 06:13:03 CEST 2006


Author: tim.peters
Date: Wed Jun 14 06:13:00 2006
New Revision: 46940

Modified:
   python/trunk/Lib/difflib.py
Log:
Repaired typo in new comment.


Modified: python/trunk/Lib/difflib.py
==============================================================================
--- python/trunk/Lib/difflib.py	(original)
+++ python/trunk/Lib/difflib.py	Wed Jun 14 06:13:00 2006
@@ -509,7 +509,7 @@
             if i1 + k1 == i2 and j1 + k1 == j2:
                 # Yes, so collapse them -- this just increases the length of
                 # the first block by the length of the second, and the first
-                # block so lengthebd remains the block to compare against.
+                # block so lengthened remains the block to compare against.
                 k1 += k2
             else:
                 # Not adjacent.  Remember the first block (k1==0 means it's


More information about the Python-checkins mailing list