diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-06-14 04:13:00 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-06-14 04:13:00 (GMT) |
commit | 61bdd39b02fb325b73ae6d1a6d50fbc4e0db7ab5 (patch) | |
tree | e5c1257f1dc6f93856a8ca7d31b80d99fa0bbe99 /Lib/difflib.py | |
parent | 43898b4f642acf182242744181143141228ca56e (diff) | |
download | cpython-61bdd39b02fb325b73ae6d1a6d50fbc4e0db7ab5.zip cpython-61bdd39b02fb325b73ae6d1a6d50fbc4e0db7ab5.tar.gz cpython-61bdd39b02fb325b73ae6d1a6d50fbc4e0db7ab5.tar.bz2 |
Repaired typo in new comment.
Diffstat (limited to 'Lib/difflib.py')
-rw-r--r-- | Lib/difflib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/difflib.py b/Lib/difflib.py index 347b647..3e28b18 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 |