From b0a3bd1440cab2df1c181654b23f58853916a20e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Sun, 5 Nov 2023 00:07:40 +1300 Subject: [PATCH] Consistency --- src/stdlib/child.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/stdlib/child.rs b/src/stdlib/child.rs index a236d67..e51fe9a 100644 --- a/src/stdlib/child.rs +++ b/src/stdlib/child.rs @@ -127,8 +127,9 @@ impl GroupChild { self.imp.into_inner() } - /// Forces the child process group to exit. If the group has already exited, an [`InvalidInput`] - /// error is returned. + /// Forces the child process group to exit. + /// + /// If the group has already exited, an [`InvalidInput`] error is returned. /// /// This is equivalent to sending a SIGKILL on Unix platforms. ///