Skip to content

Commit 1d23529

Browse files
committed
Fix typos
1 parent 27a9b88 commit 1d23529

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

bpython/curtsiesfrontend/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def __init__(self,
403403

404404
self.request_paint_to_pad_bottom = 0
405405

406-
# offscreen command yields results different from scrollback bufffer
406+
# offscreen command yields results different from scrollback buffer
407407
self.inconsistent_history = False
408408

409409
# history error message has already been displayed

bpython/formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
\x04 represents the end of the string; this is
5050
necessary because the strings are all joined
5151
together at the end so the parser needs them
52-
as delimeters
52+
as delimiters
5353
5454
"""
5555

bpython/lazyre.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
class LazyReCompile(object):
2727
"""Compile regular expressions on first use
2828
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."""
3131

3232
def __init__(self, regex, flags=0):
3333
self.regex = regex

bpython/urwid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def _reset_timer(self):
233233

234234
def prompt(self, s=None, single=False):
235235
"""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
237237
status bar will be reset. If single is True, the first keypress will be
238238
returned."""
239239

0 commit comments

Comments
 (0)