From 7182c1a9cd9301ba2628adf9c23aa5df6f7a9352 Mon Sep 17 00:00:00 2001 From: Bryan Van de Ven Date: Fri, 20 Oct 2023 16:24:45 -0700 Subject: [PATCH] typo --- src/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.rs b/src/app.rs index b5e58b4..bc49a39 100644 --- a/src/app.rs +++ b/src/app.rs @@ -2545,10 +2545,10 @@ pub fn start(mut data_sources: Vec>) { 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();