From 5fb2b7f13596648113def1572b4d2aa57dc8b88a Mon Sep 17 00:00:00 2001 From: The Noah Date: Wed, 21 Aug 2024 11:53:59 -0500 Subject: [PATCH] style: make comments consistent --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 5c77701..10fbb17 100644 --- a/src/main.rs +++ b/src/main.rs @@ -18,7 +18,7 @@ fn main() { let current_exe = std::env::current_exe().unwrap(); - // Kill any existing instances of the program + // kill any existing instances of the program let exe_name = current_exe.file_name().unwrap().to_string_lossy(); let system = sysinfo::System::new_all(); @@ -45,7 +45,7 @@ fn main() { std::process::Command::new(current_exe).args(args).status().unwrap(); }); - // Ensure the new process has time to start + // ensure the new process has time to start thread::sleep(Duration::from_secs(5)); } else { thread::spawn(|| {