1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-10 15:04:32 +03:00

fix Executor names copypasta

This commit is contained in:
Wez Furlong 2019-03-17 15:12:43 -07:00
parent 1c06430b3a
commit ff64ba727b
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ struct MuxExecutor {
impl Executor for MuxExecutor {
fn execute(&self, f: SpawnFunc) {
self.tx.send(f).expect("GlutinExecutor execute failed");
self.tx.send(f).expect("MuxExecutor execute failed");
}
fn clone_executor(&self) -> Box<Executor> {
Box::new(MuxExecutor {

View File

@ -33,7 +33,7 @@ pub struct X11GuiExecutor {
impl Executor for X11GuiExecutor {
fn execute(&self, f: SpawnFunc) {
self.tx.send(f).expect("GlutinExecutor execute failed");
self.tx.send(f).expect("X11GuiExecutor execute failed");
}
fn clone_executor(&self) -> Box<Executor> {
Box::new(X11GuiExecutor {