Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
lunarcoffee committed Mar 29, 2021
1 parent 1c61e39 commit 04fb49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fn make_ui() -> impl Widget<AppData> {
let rates = match rates_iter.collect::<Result<Vec<_>, _>>() {
Ok(r) if r.iter().all(|&r| r >= 0.01) => r,
_ => {
data.log += "Error: rates below 0.01 are not supported";
data.log += "Error: invalid rate(s) specified\n";
return;
}
};
Expand Down

0 comments on commit 04fb49f

Please sign in to comment.