Skip to content

Commit

Permalink
style: make comments consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Noah committed Aug 21, 2024
1 parent 5bff205 commit 5fb2b7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand 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(|| {
Expand Down

0 comments on commit 5fb2b7f

Please sign in to comment.