summaryrefslogtreecommitdiffstats
path: root/src/run.rs
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2019-04-28 16:28:43 -0400
committerJiayi Zhao <jeff.no.zhao@gmail.com>2019-04-28 16:28:43 -0400
commit0c367c54f88681290517f91da27dbad394d6229d (patch)
tree084f92829098903fceb9698c04860d1056ae65b7 /src/run.rs
parent1f94f80f2abc768209e57c09ba4f8d2c3180a897 (diff)
code cleanup
Diffstat (limited to 'src/run.rs')
-rw-r--r--src/run.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run.rs b/src/run.rs
index 8979f1b..a260f37 100644
--- a/src/run.rs
+++ b/src/run.rs
@@ -168,7 +168,7 @@ pub fn run(config_t: config::JoshutoConfig, keymap_t: config::JoshutoKeymap) {
if !context.threads.is_empty() {
ncurses::timeout(0);
match process_threads(&mut context, &view) {
- Ok(()) => {},
+ Ok(()) => {}
Err(e) => ui::wprint_err(&view.bot_win, e.to_string().as_str()),
}
ncurses::doupdate();