Skip to content

Commit 93e6421

Browse files
committed
fix console message typo
1 parent 88fbd03 commit 93e6421

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gui.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -608,14 +608,14 @@ impl eframe::App for MyApp {
608608
Ok(_) => {
609609
print_to_console(
610610
&self.print_lock,
611-
Print::Ok(format!("saved data file to {:?} ", self.picked_path_plot)),
611+
Print::Ok(format!("saved plot to {:?} ", self.picked_path_plot)),
612612
);
613613
}
614614
Err(e) => {
615615
print_to_console(
616616
&self.print_lock,
617617
Print::Error(format!(
618-
"failed to save file to {:?}: {:?}",
618+
"failed to plot to {:?}: {:?}",
619619
self.picked_path_plot, e
620620
)),
621621
);

0 commit comments

Comments
 (0)