doc: Fix typo in std::process::Child documentation

This commit is contained in:
JR Heard 2020-08-23 16:38:23 -07:00 committed by GitHub
parent 5180f3da5f
commit bc47f70f88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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).