Skip to content

Commit 5630704

Browse files
authored
Merge pull request #577 from Cj-bc/fix-typo
Fix comment typo
2 parents bf4c404 + d4b59d5 commit 5630704

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ipykernel/kernelbase.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ def _send_abort_reply(self, stream, msg, idents):
808808
)
809809

810810
def _no_raw_input(self):
811-
"""Raise StdinNotImplentedError if active frontend doesn't support
811+
"""Raise StdinNotImplementedError if active frontend doesn't support
812812
stdin."""
813813
raise StdinNotImplementedError("raw_input was called, but this "
814814
"frontend does not support stdin.")
@@ -818,7 +818,7 @@ def getpass(self, prompt='', stream=None):
818818
819819
Raises
820820
------
821-
StdinNotImplentedError if active frontend doesn't support stdin.
821+
StdinNotImplementedError if active frontend doesn't support stdin.
822822
"""
823823
if not self._allow_stdin:
824824
raise StdinNotImplementedError(
@@ -839,7 +839,7 @@ def raw_input(self, prompt=''):
839839
840840
Raises
841841
------
842-
StdinNotImplentedError if active frontend doesn't support stdin.
842+
StdinNotImplementedError if active frontend doesn't support stdin.
843843
"""
844844
if not self._allow_stdin:
845845
raise StdinNotImplementedError(

0 commit comments

Comments
 (0)