Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bryevdv committed Oct 20, 2023
1 parent c9504a6 commit 7182c1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2545,10 +2545,10 @@ pub fn start(mut data_sources: Vec<Box<dyn DeferredDataSource>>) {
let app_name = if data_sources.len() == 1 {
match data_sources[0].fetch_description().source_locator {
Some(source_locator) => format!("{source_locator} - Legion Prof"),
_ => String::from("Unknown Data Source - Legion Prof"),
_ => "Unknown Data Source - Legion Prof".to_string(),
}
} else {
String::from("Unknone Data Source - Legion Prof")
"Unknown Data Source - Legion Prof".to_string()
};

let native_options = eframe::NativeOptions::default();
Expand Down

0 comments on commit 7182c1a

Please sign in to comment.