We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5b71392 + a72d4fa commit b242b42Copy full SHA for b242b42
_typos.toml
src/error.rs
@@ -29,7 +29,7 @@ pub enum Error {
29
Io(#[from] std::io::Error),
30
31
#[error("Did not understand Ctrl-{}", .0)]
32
- SendContolError(char),
+ SendControlError(char),
33
34
#[error("Failed to send via MPSC channel")]
35
MpscSendError,
src/session.rs
@@ -55,7 +55,7 @@ impl<W: Write> StreamSession<W> {
55
']' => 29,
56
'^' => 30,
57
'_' => 31,
58
- _ => return Err(Error::SendContolError(c)),
+ _ => return Err(Error::SendControlError(c)),
59
};
60
self.writer.write_all(&[code])?;
61
// stdout is line buffered, so needs a flush
0 commit comments