From e86c3f7891efad3c8d5d2d92d28bbc2183ccf5c7 Mon Sep 17 00:00:00 2001 From: Frigyes <72750891+Frigyes06@users.noreply.github.com> Date: Tue, 9 Apr 2024 09:20:36 -0700 Subject: [PATCH] Capitalization fixes Co-authored-by: Anonymoussaurus <50231698+AnonymousWP@users.noreply.github.com> --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 44294bd..415e20f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -32,7 +32,7 @@ fn main() -> iced::Result { /// match setup_logger().expect("Error setting up logger") /// ''' pub fn setup_logger() -> Result<(), fern::InitError> { - /// Attach Windows terminal, only on windows + /// Attach Windows terminal, only on Windows #[cfg(target_os = "windows")] { attach_windows_console(); @@ -89,7 +89,7 @@ pub fn setup_logger() -> Result<(), fern::InitError> { /// (Windows) Allow the application to display logs to the terminal /// regardless if it was compiled with `windows_subsystem = "windows"`. /// -/// This is excluded on non-windows targets. +/// This is excluded on non-Windows targets. #[cfg(target_os = "windows")] fn attach_windows_console() { use win32console::console::WinConsole;