about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJR Heard <jrheard@cs.stanford.edu>2020-08-23 16:38:23 -0700
committerGitHub <noreply@github.com>2020-08-23 16:38:23 -0700
commitbc47f70f888afff97ffd7a4161bd45f9054dede6 (patch)
tree913148141457a1513cc01e2af356740f65958180
parent5180f3da5fd72627a8d38558ad1297df38793acd (diff)
downloadrust-bc47f70f888afff97ffd7a4161bd45f9054dede6.tar.gz
rust-bc47f70f888afff97ffd7a4161bd45f9054dede6.zip
doc: Fix typo in std::process::Child documentation
-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).