summaryrefslogtreecommitdiff
path: root/rust/src/interaction/handler.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-08 21:50:23 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commit6617b0afa09f549d0a5c9c53063f3ad8ab82b7e4 (patch)
treec5b6dc0ba8d257b77c4e62611ec64a6d2377a94b /rust/src/interaction/handler.rs
parentadbd39ab7c3d4e67e8709af43176e60f31141ba8 (diff)
[Rust] Fix misc typos
Diffstat (limited to 'rust/src/interaction/handler.rs')
-rw-r--r--rust/src/interaction/handler.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/interaction/handler.rs b/rust/src/interaction/handler.rs
index fa1681d1..23ca66e4 100644
--- a/rust/src/interaction/handler.rs
+++ b/rust/src/interaction/handler.rs
@@ -264,17 +264,17 @@ impl InteractionHandlerTask {
};
let progress_ctxt = progress as *mut P as *mut c_void;
- ffi_wrap!("custom_interation_run_progress_dialog", unsafe {
+ ffi_wrap!("custom_interaction_run_progress_dialog", unsafe {
task(
self.ctxt,
- Some(cb_custom_interation_handler_task::<P>),
+ Some(cb_custom_interaction_handler_task::<P>),
progress_ctxt,
)
})
}
}
-unsafe extern "C" fn cb_custom_interation_handler_task<P: FnMut(usize, usize) -> bool>(
+unsafe extern "C" fn cb_custom_interaction_handler_task<P: FnMut(usize, usize) -> bool>(
ctxt: *mut c_void,
cur: usize,
max: usize,