about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-08-24 11:48:55 +0900
committerGitHub <noreply@github.com>2020-08-24 11:48:55 +0900
commit47a03d9815d7099a7555323d62a4cec7ba05dad6 (patch)
tree4a963a7d2639f733d5653b48172c7cf2f029a890
parent7209b9cc49d6fc8484bf0dd5c88cb351a1cb3570 (diff)
parentbc47f70f888afff97ffd7a4161bd45f9054dede6 (diff)
downloadrust-47a03d9815d7099a7555323d62a4cec7ba05dad6.tar.gz
rust-47a03d9815d7099a7555323d62a4cec7ba05dad6.zip
Rollup merge of #75859 - jrheard:patch-2, r=jonas-schievink
doc: Fix typo in std::process::Child documentation

Nearly done reading stdlib docs, found another small typo, here's a PR!

r? @steveklabnik
-rw-r--r--library/std/src/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/process.rs b/library/std/src/process.rs
index 6d94fa9ebfe..c42bc109652 100644
--- a/library/std/src/process.rs
+++ b/library/std/src/process.rs
@@ -126,7 +126,7 @@ use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner};
 ///
 /// # Warning
 ///
-/// On some system, calling [`wait`] or similar is necessary for the OS to
+/// On some systems, calling [`wait`] or similar is necessary for the OS to
 /// release resources. A process that terminated but has not been waited on is
 /// still around as a "zombie". Leaving too many zombies around may exhaust
 /// global resources (for example process IDs).