From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7814) id B78EF3847800; Fri, 3 Sep 2021 17:04:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B78EF3847800 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Fangrui Song To: glibc-cvs@sourceware.org Subject: [glibc/maskray/unnest] llio.texi: Wording fixes in description of closefrom() X-Act-Checkin: glibc X-Git-Author: Michael Kerrisk X-Git-Refname: refs/heads/maskray/unnest X-Git-Oldrev: d19b137b6a6b19411125c7a697bfab5bcddbdb65 X-Git-Newrev: 5aa359d33163bde660fec9b26e23cfb93d63ecde Message-Id: <20210903170425.B78EF3847800@sourceware.org> Date: Fri, 3 Sep 2021 17:04:25 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Sep 2021 17:04:25 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5aa359d33163bde660fec9b26e23cfb93d63ecde commit 5aa359d33163bde660fec9b26e23cfb93d63ecde Author: Michael Kerrisk Date: Wed Aug 25 11:27:41 2021 -0300 llio.texi: Wording fixes in description of closefrom() Fix two problems. Rather than "larger than", better English is "greater than". Then there is a wordinig error on the following line: "then lowfd" appears to be cruft. Signed-off-by: Michael Kerrisk Diff: --- manual/llio.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manual/llio.texi b/manual/llio.texi index 2c59f6badf..e55b02d8bd 100644 --- a/manual/llio.texi +++ b/manual/llio.texi @@ -338,8 +338,8 @@ The kernel does not implement the required functionality. @standards{GNU, unistd.h} @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{@acsfd{}}} -The function @code{closefrom} closes all file descriptors larger than or equal -to @var{lowfd} then @var{lowfd}. This function is similar to calling +The function @code{closefrom} closes all file descriptors greater than or equal +to @var{lowfd}. This function is similar to calling @code{close} for all open file descriptors not less than @var{lowfd}. Already closed file descriptors are ignored.