cargo fmt

This commit is contained in:
Henrik Friedrichsen
2019-03-02 18:39:58 +01:00
parent 5a1c7dff69
commit c60324af61
2 changed files with 13 additions and 6 deletions

View File

@@ -39,6 +39,8 @@ impl EventManager {
pub fn trigger(&self) {
// send a no-op to trigger event loop processing
self.cursive_sink.send(Box::new(|_s: &mut Cursive| {})).expect("could not send no-op event to cursive");
self.cursive_sink
.send(Box::new(|_s: &mut Cursive| {}))
.expect("could not send no-op event to cursive");
}
}