From 9c41424d3ab969fd8bc72378cb1284d685514f29 Mon Sep 17 00:00:00 2001 From: jD91mZM2 Date: Tue, 21 Jul 2020 14:10:58 +0000 Subject: [PATCH] Apply suggestion to src/syscall/process.rs --- src/syscall/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syscall/process.rs b/src/syscall/process.rs index ae0f72a..cc3bce3 100644 --- a/src/syscall/process.rs +++ b/src/syscall/process.rs @@ -1002,7 +1002,7 @@ pub fn fexec_kernel(fd: FileHandle, args: Box<[Box<[u8]>]>, vars: Box<[Box<[u8]> }; // `fexec_kernel` can recurse if an interpreter is found. We get the - // auxiliery vector from the first invocation, which is passed via an + // auxiliary vector from the first invocation, which is passed via an // argument, or if this is the first one we create it. let auxv = if let Some(auxv) = auxv { auxv