diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-07-30 22:14:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-30 22:14:58 (GMT) |
commit | 0acb646b8e405864224bfd6d7d5089980dea63ac (patch) | |
tree | 3cff881b9a494392d9a57382f75be584ccde2a59 /Lib/idlelib/history.py | |
parent | 84846b0187919551b1b08dca447658bbbbb710b1 (diff) | |
download | cpython-0acb646b8e405864224bfd6d7d5089980dea63ac.zip cpython-0acb646b8e405864224bfd6d7d5089980dea63ac.tar.gz cpython-0acb646b8e405864224bfd6d7d5089980dea63ac.tar.bz2 |
Fix idlelib typos discovered by min ho, pr 15018. (GH-15029)
Diffstat (limited to 'Lib/idlelib/history.py')
-rw-r--r-- | Lib/idlelib/history.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/history.py b/Lib/idlelib/history.py index 56f53a0..ad44a96 100644 --- a/Lib/idlelib/history.py +++ b/Lib/idlelib/history.py @@ -39,7 +39,7 @@ class History: return "break" def fetch(self, reverse): - '''Fetch statememt and replace current line in text widget. + '''Fetch statement and replace current line in text widget. Set prefix and pointer as needed for successive fetches. Reset them to None, None when returning to the start line. |