mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
Fix typo in error message
This commit is contained in:
parent
4d4e62db92
commit
f7172fd6e7
1 changed files with 2 additions and 2 deletions
|
@ -396,7 +396,7 @@ impl<Io> EventLoop<Io>
|
||||||
|
|
||||||
if ready.is_readable() {
|
if ready.is_readable() {
|
||||||
if let Err(err) = self.pty_read(&mut state, &mut buf, pipe.as_mut()) {
|
if let Err(err) = self.pty_read(&mut state, &mut buf, pipe.as_mut()) {
|
||||||
error!("Event loop exitting due to error: {} [{}:{}]",
|
error!("Event loop exiting due to error: {} [{}:{}]",
|
||||||
err, file!(), line!());
|
err, file!(), line!());
|
||||||
break 'event_loop;
|
break 'event_loop;
|
||||||
}
|
}
|
||||||
|
@ -408,7 +408,7 @@ impl<Io> EventLoop<Io>
|
||||||
|
|
||||||
if ready.is_writable() {
|
if ready.is_writable() {
|
||||||
if let Err(err) = self.pty_write(&mut state) {
|
if let Err(err) = self.pty_write(&mut state) {
|
||||||
error!("Event loop exitting due to error: {} [{}:{}]",
|
error!("Event loop exiting due to error: {} [{}:{}]",
|
||||||
err, file!(), line!());
|
err, file!(), line!());
|
||||||
break 'event_loop;
|
break 'event_loop;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue