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:
parent
1c06430b3a
commit
ff64ba727b
@ -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 {
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user