diff --git a/ipykernel/kernelbase.py b/ipykernel/kernelbase.py index 9c272c5e9..aba3223a9 100644 --- a/ipykernel/kernelbase.py +++ b/ipykernel/kernelbase.py @@ -808,7 +808,7 @@ def _send_abort_reply(self, stream, msg, idents): ) def _no_raw_input(self): - """Raise StdinNotImplentedError if active frontend doesn't support + """Raise StdinNotImplementedError if active frontend doesn't support stdin.""" raise StdinNotImplementedError("raw_input was called, but this " "frontend does not support stdin.") @@ -818,7 +818,7 @@ def getpass(self, prompt='', stream=None): Raises ------ - StdinNotImplentedError if active frontend doesn't support stdin. + StdinNotImplementedError if active frontend doesn't support stdin. """ if not self._allow_stdin: raise StdinNotImplementedError( @@ -839,7 +839,7 @@ def raw_input(self, prompt=''): Raises ------ - StdinNotImplentedError if active frontend doesn't support stdin. + StdinNotImplementedError if active frontend doesn't support stdin. """ if not self._allow_stdin: raise StdinNotImplementedError(