about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJubilee <workingjubilee@gmail.com>2024-11-04 20:40:50 -0800
committerGitHub <noreply@github.com>2024-11-04 20:40:50 -0800
commit7bff6ff3a6bfd0caa14bef3c440977669db92a82 (patch)
treef19d07e1d0ffd5871eb946ea2e91fa33018a2f8f
parent33ebfff83a9c01920adcbd4f1aaf2fe3668ea5cc (diff)
parent107b4fdba21d437e7e36b2a62bc803d6a8f31021 (diff)
downloadrust-7bff6ff3a6bfd0caa14bef3c440977669db92a82.tar.gz
rust-7bff6ff3a6bfd0caa14bef3c440977669db92a82.zip
Rollup merge of #132609 - NotWearingPants:patch-1, r=Amanieu
docs: fix grammar in doc comment at unix/process.rs

Fixed the grammar of a sentence in the docs
-rw-r--r--library/std/src/os/unix/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/process.rs b/library/std/src/os/unix/process.rs
index ef5adaf2290..7c3fa7d6507 100644
--- a/library/std/src/os/unix/process.rs
+++ b/library/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
     ///