diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-17 06:37:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-17 06:37:36 (GMT) |
commit | 9a118f1dc3f23ead28f31fdc5144ad5ce01e5b7f (patch) | |
tree | 4878492acdcc033c71d4be46967537291d433cb1 /Lib/difflib.py | |
parent | 0bb165ecc114fcf7ce1df454355c4cbbef8b63e9 (diff) | |
download | cpython-9a118f1dc3f23ead28f31fdc5144ad5ce01e5b7f.zip cpython-9a118f1dc3f23ead28f31fdc5144ad5ce01e5b7f.tar.gz cpython-9a118f1dc3f23ead28f31fdc5144ad5ce01e5b7f.tar.bz2 |
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
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 3880d84..1c6fbdb 100644 --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -1487,7 +1487,7 @@ def _mdiff(fromlines, tolines, context=None, linejunk=None, yield _make_line(lines,'-',0), None, True continue elif s.startswith(('--?+', '--+', '- ')): - # in delete block and see a intraline change or unchanged line + # in delete block and see an intraline change or unchanged line # coming: yield the delete line and then blanks from_line,to_line = _make_line(lines,'-',0), None num_blanks_to_yield,num_blanks_pending = num_blanks_pending-1,0 |