summaryrefslogtreecommitdiff
path: root/Lib/idlelib/pyparse.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2019-07-30 18:14:58 -0400
committerGitHub <noreply@github.com>2019-07-30 18:14:58 -0400
commit0acb646b8e405864224bfd6d7d5089980dea63ac (patch)
tree3cff881b9a494392d9a57382f75be584ccde2a59 /Lib/idlelib/pyparse.py
parent84846b0187919551b1b08dca447658bbbbb710b1 (diff)
downloadcpython-git-0acb646b8e405864224bfd6d7d5089980dea63ac.tar.gz
Fix idlelib typos discovered by min ho, pr 15018. (GH-15029)
Diffstat (limited to 'Lib/idlelib/pyparse.py')
-rw-r--r--Lib/idlelib/pyparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/pyparse.py b/Lib/idlelib/pyparse.py
index 81e7f53980..feb57cbb74 100644
--- a/Lib/idlelib/pyparse.py
+++ b/Lib/idlelib/pyparse.py
@@ -575,7 +575,7 @@ class Parser:
return code[i:j]
def is_block_opener(self):
- "Return True if the last interesting statemtent opens a block."
+ "Return True if the last interesting statement opens a block."
self._study2()
return self.lastch == ':'