From: Raymond Hettinger Date: Tue, 3 Jul 2012 21:25:16 +0000 (-0700) Subject: Fix spelling. X-Git-Tag: v3.3.0b2~322 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1087d9c4b371ad75d425b6132ca79f10dd304e0e;p=thirdparty%2FPython%2Fcpython.git Fix spelling. --- diff --git a/Tools/scripts/highlight.py b/Tools/scripts/highlight.py index 88b709ff298c..70da64931594 100755 --- a/Tools/scripts/highlight.py +++ b/Tools/scripts/highlight.py @@ -21,7 +21,7 @@ def combine_range(lines, start, end): return ''.join(rows), end def isolate_tokens(source): - 'Generate chunks of source and indentify chunks to be highlighted' + 'Generate chunks of source and identify chunks to be highlighted' lines = source.splitlines(True) lines.append('') readline = functools.partial(next, iter(lines), '')