From 0acb646b8e405864224bfd6d7d5089980dea63ac Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Tue, 30 Jul 2019 18:14:58 -0400 Subject: Fix idlelib typos discovered by min ho, pr 15018. (GH-15029) --- Lib/idlelib/pyparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/pyparse.py') 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 == ':' -- cgit v1.2.1