From bc47f70f888afff97ffd7a4161bd45f9054dede6 Mon Sep 17 00:00:00 2001 From: JR Heard Date: Sun, 23 Aug 2020 16:38:23 -0700 Subject: [PATCH] doc: Fix typo in std::process::Child documentation --- library/std/src/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/process.rs b/library/std/src/process.rs index 6d94fa9ebfe6d..c42bc1096528b 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).