Skip to content

Commit e8139b8

Browse files
committed
fix typo
1 parent 9b014ca commit e8139b8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src-tauri/src/export_processing.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -697,11 +697,11 @@ fn export_adjustments_as_lut(
697697
convert_image_to_cube_lut(&processed_lut, lut_size)
698698
}
699699

700-
struct ExportHandleGuide {
700+
struct ExportHandleGuard {
701701
app_handle: tauri::AppHandle,
702702
}
703703

704-
impl Drop for ExportHandleGuide {
704+
impl Drop for ExportHandleGuard {
705705
fn drop(&mut self) {
706706
if let Ok(mut handle_lock) = self
707707
.app_handle
@@ -763,7 +763,7 @@ pub async fn export_images(
763763
);
764764

765765
let task = tokio::spawn(async move {
766-
let _export_guard = ExportHandleGuide {
766+
let _export_guard = ExportHandleGuard {
767767
app_handle: app_handle.clone(),
768768
};
769769
let output_folder_path = std::path::Path::new(&output_folder_or_file);

0 commit comments

Comments
 (0)