summaryrefslogtreecommitdiffstats
path: root/src/process/help.rs
diff options
context:
space:
mode:
authorTim Oram <dev@mitmaro.ca>2021-02-24 09:00:26 -0330
committerTim Oram <dev@mitmaro.ca>2021-02-24 09:42:27 -0330
commit2922eeefc5317e8c3e70eca3231fbd984f6f7f79 (patch)
tree3c51f3c8c09c8da80b072db58ad11c9ea05dcfe7 /src/process/help.rs
parentb7566aee6df9eb3426be57e502eac4ff70414bc1 (diff)
Adding missing semicolons at end of lines
There were a handful of places that should have had semicolons at the end of the line, but it was missing.
Diffstat (limited to 'src/process/help.rs')
-rw-r--r--src/process/help.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/process/help.rs b/src/process/help.rs
index 8a6f2b1..eb5d418 100644
--- a/src/process/help.rs
+++ b/src/process/help.rs
@@ -39,7 +39,7 @@ impl ProcessModule for Help {
}
fn deactivate(&mut self) {
- self.clear()
+ self.clear();
}
fn build_view_data(&mut self, view: &View<'_>, _: &TodoFile) -> &ViewData {
@@ -227,7 +227,7 @@ mod tests {
test_context.handle_input(&mut module),
input = Input::Character('a'),
state = State::ConfirmRebase
- )
+ );
},
);
}
@@ -241,7 +241,7 @@ mod tests {
&[Input::Resize],
|mut test_context: TestContext<'_>| {
let mut module = Help::new();
- assert_process_result!(test_context.handle_input(&mut module), input = Input::Resize)
+ assert_process_result!(test_context.handle_input(&mut module), input = Input::Resize);
},
);
}