Skip to content

docs: fix simple typo, blockied -> blocked #964

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: fix simple typo, blockied -> blocked
There is a small typo in bpython/curtsiesfrontend/repl.py.

Should read `blocked` rather than `blockied`.

Signed-off-by: Tim Gates <tim.gates@iress.com>
  • Loading branch information
timgates42 committed Jul 16, 2022
commit 27665ec8679ea9f57a0100672d8ab21d354179be
2 changes: 1 addition & 1 deletion bpython/curtsiesfrontend/repl.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ def request_reload(self, files_modified: Sequence[str] = ()) -> None:
def schedule_refresh(self, when: float = 0) -> None:
"""Schedule a ScheduledRefreshRequestEvent for when.

Such a event should interrupt if blockied waiting for keyboard input"""
Such a event should interrupt if blocked waiting for keyboard input"""
if self.reevaluating or self.paste_mode:
self.fake_refresh_requested = True
else:
Expand Down