public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] llio.texi: Wording fixes in description of closefrom()
@ 2021-08-11 22:30 Michael Kerrisk
  2021-08-24 16:11 ` Adhemerval Zanella
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Kerrisk @ 2021-08-11 22:30 UTC (permalink / raw)
  To: mtk.manpages, Adhemerval Zanella; +Cc: libc-alpha

Fix two problems.

Rather than "larger than", better English is "greater than".

Then there is a wordinig error on the follwoing line: "then lowfd"
appears to be cruft.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
 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.
-- 
2.31.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] llio.texi: Wording fixes in description of closefrom()
  2021-08-11 22:30 [PATCH] llio.texi: Wording fixes in description of closefrom() Michael Kerrisk
@ 2021-08-24 16:11 ` Adhemerval Zanella
  2021-08-24 21:41   ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 6+ messages in thread
From: Adhemerval Zanella @ 2021-08-24 16:11 UTC (permalink / raw)
  To: Michael Kerrisk; +Cc: libc-alpha



On 11/08/2021 19:30, Michael Kerrisk wrote:
> Fix two problems.
> 
> Rather than "larger than", better English is "greater than".
> 
> Then there is a wordinig error on the follwoing line: "then lowfd"
> appears to be cruft.
> 
> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>

LGTM, thanks.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] llio.texi: Wording fixes in description of closefrom()
  2021-08-24 16:11 ` Adhemerval Zanella
@ 2021-08-24 21:41   ` Michael Kerrisk (man-pages)
  2021-08-25 12:35     ` Adhemerval Zanella
  2021-08-27  3:43     ` Siddhesh Poyarekar
  0 siblings, 2 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2021-08-24 21:41 UTC (permalink / raw)
  To: Adhemerval Zanella; +Cc: libc-alpha

Hello Adhemerval

On Tue, 24 Aug 2021 at 18:11, Adhemerval Zanella
<adhemerval.zanella@linaro.org> wrote:
>
>
>
> On 11/08/2021 19:30, Michael Kerrisk wrote:
> > Fix two problems.
> >
> > Rather than "larger than", better English is "greater than".
> >
> > Then there is a wordinig error on the follwoing line: "then lowfd"
> > appears to be cruft.
> >
> > Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
>
> LGTM, thanks.
>
> Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>

Who will apply this? (I can't.)

Thanks,

Michael

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



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] llio.texi: Wording fixes in description of closefrom()
  2021-08-24 21:41   ` Michael Kerrisk (man-pages)
@ 2021-08-25 12:35     ` Adhemerval Zanella
  2021-08-26 23:19       ` Michael Kerrisk (man-pages)
  2021-08-27  3:43     ` Siddhesh Poyarekar
  1 sibling, 1 reply; 6+ messages in thread
From: Adhemerval Zanella @ 2021-08-25 12:35 UTC (permalink / raw)
  To: mtk.manpages; +Cc: libc-alpha



On 24/08/2021 18:41, Michael Kerrisk (man-pages) wrote:
> Hello Adhemerval
> 
> On Tue, 24 Aug 2021 at 18:11, Adhemerval Zanella
> <adhemerval.zanella@linaro.org> wrote:
>>
>>
>>
>> On 11/08/2021 19:30, Michael Kerrisk wrote:
>>> Fix two problems.
>>>
>>> Rather than "larger than", better English is "greater than".
>>>
>>> Then there is a wordinig error on the follwoing line: "then lowfd"
>>> appears to be cruft.
>>>
>>> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
>>
>> LGTM, thanks.
>>
>> Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
> 
> Who will apply this? (I can't.)

I will take care of it.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] llio.texi: Wording fixes in description of closefrom()
  2021-08-25 12:35     ` Adhemerval Zanella
@ 2021-08-26 23:19       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2021-08-26 23:19 UTC (permalink / raw)
  To: Adhemerval Zanella; +Cc: mtk.manpages, libc-alpha

On 8/25/21 2:35 PM, Adhemerval Zanella wrote:
> 
> 
> On 24/08/2021 18:41, Michael Kerrisk (man-pages) wrote:
>> Hello Adhemerval
>>
>> On Tue, 24 Aug 2021 at 18:11, Adhemerval Zanella
>> <adhemerval.zanella@linaro.org> wrote:
>>>
>>>
>>>
>>> On 11/08/2021 19:30, Michael Kerrisk wrote:
>>>> Fix two problems.
>>>>
>>>> Rather than "larger than", better English is "greater than".
>>>>
>>>> Then there is a wordinig error on the follwoing line: "then lowfd"
>>>> appears to be cruft.
>>>>
>>>> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
>>>
>>> LGTM, thanks.
>>>
>>> Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
>>
>> Who will apply this? (I can't.)
> 
> I will take care of it.

Thanks, Adhemerval.

Cheers,

Michael



-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] llio.texi: Wording fixes in description of closefrom()
  2021-08-24 21:41   ` Michael Kerrisk (man-pages)
  2021-08-25 12:35     ` Adhemerval Zanella
@ 2021-08-27  3:43     ` Siddhesh Poyarekar
  1 sibling, 0 replies; 6+ messages in thread
From: Siddhesh Poyarekar @ 2021-08-27  3:43 UTC (permalink / raw)
  To: mtk.manpages, Adhemerval Zanella; +Cc: libc-alpha

On 8/25/21 3:11 AM, Michael Kerrisk (man-pages) via Libc-alpha wrote:
>>> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
>>
>> LGTM, thanks.
>>
>> Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
> 
> Who will apply this? (I can't.)

We should really fix this.  If you're interested, could you please 
submit a request?

https://sourceware.org/cgi-bin/pdw/ps_form.cgi

Thanks!
Siddhesh

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-08-27  3:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-11 22:30 [PATCH] llio.texi: Wording fixes in description of closefrom() Michael Kerrisk
2021-08-24 16:11 ` Adhemerval Zanella
2021-08-24 21:41   ` Michael Kerrisk (man-pages)
2021-08-25 12:35     ` Adhemerval Zanella
2021-08-26 23:19       ` Michael Kerrisk (man-pages)
2021-08-27  3:43     ` Siddhesh Poyarekar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).