diff options
Diffstat (limited to 'alacritty_terminal/src/event_loop.rs')
-rw-r--r-- | alacritty_terminal/src/event_loop.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty_terminal/src/event_loop.rs b/alacritty_terminal/src/event_loop.rs index 09c71668..c3224dfe 100644 --- a/alacritty_terminal/src/event_loop.rs +++ b/alacritty_terminal/src/event_loop.rs @@ -62,7 +62,7 @@ struct Writing { pub struct Notifier(pub Sender<Msg>); impl event::Notify for Notifier { - fn notify<B>(&mut self, bytes: B) + fn notify<B>(&self, bytes: B) where B: Into<Cow<'static, [u8]>>, { |