From 81b4b26f96504b548f4bc1cdfa430aae9cb7f969 Mon Sep 17 00:00:00 2001 From: futile Date: Thu, 4 Sep 2025 09:44:07 +0100 Subject: [PATCH] small grammar fix on non-windows compilation error --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 3d34766..a8ae827 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] #[cfg(not(target_os = "windows"))] -compile_error!("This application must be compiled on Windows."); +compile_error!("This application must be compiled for Windows."); mod features; mod gui;