From 7c7e91ca311a976f2ee0950422f5c148580e538a Mon Sep 17 00:00:00 2001 From: yggverse Date: Fri, 8 Nov 2024 06:05:16 +0200 Subject: [PATCH] add comment --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 5d240d56..c5103a0e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -39,7 +39,7 @@ fn main() -> ExitCode { // Init GTK, start application match gtk::init() { - Ok(_) => App::new(profile_database_connection, profile_path).run(), + Ok(_) => App::new(profile_database_connection, profile_path).run(), // @TODO common struct for profile data Err(_) => ExitCode::FAILURE, } }