From 61bdd39b02fb325b73ae6d1a6d50fbc4e0db7ab5 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Wed, 14 Jun 2006 04:13:00 +0000 Subject: [PATCH] Repaired typo in new comment. --- Lib/difflib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/difflib.py b/Lib/difflib.py index 347b647d31a..3e28b18bf42 100644 --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -509,7 +509,7 @@ class SequenceMatcher: 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