diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-08-06 21:22:05 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-06 21:22:47 +0200 |
commit | ef4b9ce544636e24f30483217b4fcd6315d46894 (patch) | |
tree | 3306fc54781ea4264aa985ef1a12741e00562e2c /src/main.rs | |
parent | d10853e99841dc2498341d6a7f2c825beb032d66 (diff) |
Fix retarded rustfmt shit
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 753cab0..86dc766 100644 --- a/src/main.rs +++ b/src/main.rs @@ -197,7 +197,7 @@ fn run_indiv( } /* If the process failed, it is expected to print an error message; as such, - we exit directly. */ + we exit directly. */ if !child.wait()?.success() { process::exit(1); } @@ -255,7 +255,7 @@ fn run_multi( } /* If the process failed, it is expected to print an error message; as such, - we exit directly. */ + we exit directly. */ if !child.wait()?.success() { process::exit(1); } |