From e46998278ada8d8c8ef82d4cdf793874dfc8d4dc Mon Sep 17 00:00:00 2001 From: fusillicode Date: Sun, 26 Jan 2020 14:06:18 +0100 Subject: [PATCH] Fix typo in a job.rs comment --- src/exec/job.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exec/job.rs b/src/exec/job.rs index 017b8ef..67d301c 100644 --- a/src/exec/job.rs +++ b/src/exec/job.rs @@ -42,7 +42,7 @@ pub fn job( // Drop the lock so that other threads can read from the receiver. drop(lock); - // Generate a command, executes it and store its exit code. + // Generate a command, execute it and store its exit code. results.push(cmd.generate_and_execute(&value, Arc::clone(&out_perm))) } // Returns error in case of any error.