about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNotWearingPants <26556598+NotWearingPants@users.noreply.github.com>2024-11-04 20:42:21 +0200
committerGitHub <noreply@github.com>2024-11-04 20:42:21 +0200
commit107b4fdba21d437e7e36b2a62bc803d6a8f31021 (patch)
tree4f28f360aadaf0d36ad7b530f90613e851795840
parent432972cae64d736b892e7a4c8b4fe7fe0e888904 (diff)
downloadrust-107b4fdba21d437e7e36b2a62bc803d6a8f31021.tar.gz
rust-107b4fdba21d437e7e36b2a62bc803d6a8f31021.zip
docs: fix grammar in doc comment at unix/process.rs
-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
     ///