From fad7d68d1c25b3974aede385fe99fd32f6fc0c00 Mon Sep 17 00:00:00 2001 From: NotWearingPants <26556598+NotWearingPants@users.noreply.github.com> Date: Mon, 4 Nov 2024 20:42:21 +0200 Subject: [PATCH] docs: fix grammar in doc comment at unix/process.rs --- std/src/os/unix/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/src/os/unix/process.rs b/std/src/os/unix/process.rs index ef5adaf229088..7c3fa7d6507e7 100644 --- a/std/src/os/unix/process.rs +++ b/std/src/os/unix/process.rs @@ -143,7 +143,7 @@ pub trait CommandExt: Sealed { /// /// This function, unlike `spawn`, will **not** `fork` the process to create /// a new child. Like spawn, however, the default behavior for the stdio - /// descriptors will be to inherited from the current process. + /// descriptors will be to inherit them from the current process. /// /// # Notes ///