diff options
author | Joe Neeman | 2021-06-28 13:00:44 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-30 08:08:50 +0000 |
commit | ffa2f2590bc679b3cf8529e9578860ad05b78148 (patch) | |
tree | f7381603e7d998d3138351e07212834802bf90dc /helix-term/src/application.rs | |
parent | d64d75e72434842f2cceff2c77a03efab5e7a0bc (diff) |
Satisfy clippy.
Diffstat (limited to 'helix-term/src/application.rs')
-rw-r--r-- | helix-term/src/application.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index c2ae4651..3d20e1b3 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -167,7 +167,7 @@ impl Application { } self.render(); } - Some(callback) = self.jobs.next() => { + Some(callback) = self.jobs.next_job() => { self.jobs.handle_callback(&mut self.editor, &mut self.compositor, callback); self.render(); } |