File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -403,7 +403,7 @@ def __init__(self,
403
403
404
404
self .request_paint_to_pad_bottom = 0
405
405
406
- # offscreen command yields results different from scrollback bufffer
406
+ # offscreen command yields results different from scrollback buffer
407
407
self .inconsistent_history = False
408
408
409
409
# history error message has already been displayed
Original file line number Diff line number Diff line change 49
49
\x04 represents the end of the string; this is
50
50
necessary because the strings are all joined
51
51
together at the end so the parser needs them
52
- as delimeters
52
+ as delimiters
53
53
54
54
"""
55
55
Original file line number Diff line number Diff line change 26
26
class LazyReCompile (object ):
27
27
"""Compile regular expressions on first use
28
28
29
- This class allows to store regular expressions and compiles them on first
30
- use."""
29
+ This class allows one to store regular expressions and compiles them on
30
+ first use."""
31
31
32
32
def __init__ (self , regex , flags = 0 ):
33
33
self .regex = regex
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ def _reset_timer(self):
233
233
234
234
def prompt (self , s = None , single = False ):
235
235
"""Prompt the user for some input (with the optional prompt 's'). After
236
- the user hit enter the signal 'prompt_result' will be emited and the
236
+ the user hit enter the signal 'prompt_result' will be emitted and the
237
237
status bar will be reset. If single is True, the first keypress will be
238
238
returned."""
239
239
You can’t perform that action at this time.
0 commit comments