docs: fix grammar in doc comment at unix/process.rs

This commit is contained in:
NotWearingPants 2024-11-04 20:42:21 +02:00 committed by GitHub
parent 432972cae6
commit 107b4fdba2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -143,7 +143,7 @@ unsafe fn before_exec<F>(&mut self, f: F) -> &mut process::Command
/// ///
/// This function, unlike `spawn`, will **not** `fork` the process to create /// This function, unlike `spawn`, will **not** `fork` the process to create
/// a new child. Like spawn, however, the default behavior for the stdio /// 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 /// # Notes
/// ///