summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2012-07-03 21:25:16 (GMT)
committerRaymond Hettinger <python@rcn.com>2012-07-03 21:25:16 (GMT)
commit1087d9c4b371ad75d425b6132ca79f10dd304e0e (patch)
tree6eee081d734b0f14c922e3f1de1dc773d3bb6bd4 /Tools
parent3a96161a73ce814128d1b3924b179d5eaf6d2573 (diff)
downloadcpython-1087d9c4b371ad75d425b6132ca79f10dd304e0e.zip
cpython-1087d9c4b371ad75d425b6132ca79f10dd304e0e.tar.gz
cpython-1087d9c4b371ad75d425b6132ca79f10dd304e0e.tar.bz2
Fix spelling.
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/scripts/highlight.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/highlight.py b/Tools/scripts/highlight.py
index 88b709f..70da649 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), '')