public inbox for linux-man@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] posix_fallocate.3, prctl.2, sigaction.2, sysconf.3, tzset.3: minor rewording
@ 2011-08-31 15:15 Seonghun Lim
       [not found] ` <4E5E4FFD.7020806-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Seonghun Lim @ 2011-08-31 15:15 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

man-pages version: latest git repository
why: Clarify description by rewording. Fix some typos.


diff --git a/man3/posix_fallocate.3 b/man3/posix_fallocate.3
--- a/man3/posix_fallocate.3
+++ b/man3/posix_fallocate.3
@@ -94,7 +94,7 @@ referred to by
.TP
.B ESPIPE
.I fd
-refers to a pipe of file descriptor.
+refers to a pipe.
.SH VERSIONS
.BR posix_fallocate ()
is available since glibc 2.1.94.
diff --git a/man2/prctl.2 b/man2/prctl.2
--- a/man2/prctl.2
+++ b/man2/prctl.2
@@ -157,7 +157,7 @@ in the location pointed to by
.TP
.BR PR_SET_FPEXC " (since Linux 2.4.21, 2.5.32, only on PowerPC)"
Set floating-point exception mode to \fIarg2\fP.
-Pass \fBPR_FP_EXC_SW_ENABLE\fP to use FPEXC for FP exception enables,
+Pass \fBPR_FP_EXC_SW_ENABLE\fP to use FPEXC for FP exception enabled,
\fBPR_FP_EXC_DIV\fP for floating-point divide by zero,
\fBPR_FP_EXC_OVF\fP for floating-point overflow,
\fBPR_FP_EXC_UND\fP for floating-point underflow,
diff --git a/man2/sigaction.2 b/man2/sigaction.2
--- a/man2/sigaction.2
+++ b/man2/sigaction.2
@@ -297,7 +297,7 @@ In addition, signals sent with
.BR sigqueue (2)
fill in
.IR si_int " and " si_ptr
-with the values specified by the sender the signal;
+with the values specified by the sender of the signal;
see
.BR sigqueue (2)
for more details.
diff --git a/man3/sysconf.3 b/man3/sysconf.3
--- a/man3/sysconf.3
+++ b/man3/sysconf.3
@@ -254,7 +254,7 @@ parentheses by
.BR expr (1).
.TP
.BR LINE_MAX " - " _SC_LINE_MAX
-The maximum length of a utility's input line length, either from
+The maximum length of a utility's input line, either from
standard input or from a file.
This includes length for a trailing
newline.
diff --git a/man3/tzset.3 b/man3/tzset.3
--- a/man3/tzset.3
+++ b/man3/tzset.3
@@ -156,7 +156,7 @@ runs from the first Sunday in October to the third
Sunday in March,
and the changeovers happen at the default time of 02:00:00:
.nf

- TZ="NZST-12.00:00NZDT-13:00:00,M10.1.0,M3.3.0"
+ TZ="NZST-12:00:00NZDT-13:00:00,M10.1.0,M3.3.0"
.fi
.PP
The third format specifies that the timezone information should be read

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [patch] posix_fallocate.3, prctl.2, sigaction.2, sysconf.3, tzset.3: minor rewording
       [not found] ` <4E5E4FFD.7020806-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2011-09-08 15:26   ` Michael Kerrisk
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk @ 2011-09-08 15:26 UTC (permalink / raw)
  To: Seonghun Lim; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA

Hello Seonghun,

Thanks for these reports. Best to split patches for unrelated pages.

2011/8/31 Seonghun Lim <wariua-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>:
> man-pages version: latest git repository
> why: Clarify description by rewording. Fix some typos.
>
>
> diff --git a/man3/posix_fallocate.3 b/man3/posix_fallocate.3
> --- a/man3/posix_fallocate.3
> +++ b/man3/posix_fallocate.3
> @@ -94,7 +94,7 @@ referred to by
> .TP
> .B ESPIPE
> .I fd
> -refers to a pipe of file descriptor.
> +refers to a pipe.

Applied.

> .SH VERSIONS
> .BR posix_fallocate ()
> is available since glibc 2.1.94.
> diff --git a/man2/prctl.2 b/man2/prctl.2
> --- a/man2/prctl.2
> +++ b/man2/prctl.2
> @@ -157,7 +157,7 @@ in the location pointed to by
> .TP
> .BR PR_SET_FPEXC " (since Linux 2.4.21, 2.5.32, only on PowerPC)"
> Set floating-point exception mode to \fIarg2\fP.
> -Pass \fBPR_FP_EXC_SW_ENABLE\fP to use FPEXC for FP exception enables,
> +Pass \fBPR_FP_EXC_SW_ENABLE\fP to use FPEXC for FP exception enabled,

I believe the existing text is correct (consistent with kernel
comment). No change.

> \fBPR_FP_EXC_DIV\fP for floating-point divide by zero,
> \fBPR_FP_EXC_OVF\fP for floating-point overflow,
> \fBPR_FP_EXC_UND\fP for floating-point underflow,
> diff --git a/man2/sigaction.2 b/man2/sigaction.2
> --- a/man2/sigaction.2
> +++ b/man2/sigaction.2
> @@ -297,7 +297,7 @@ In addition, signals sent with
> .BR sigqueue (2)
> fill in
> .IR si_int " and " si_ptr
> -with the values specified by the sender the signal;
> +with the values specified by the sender of the signal;

Applied.

> see
> .BR sigqueue (2)
> for more details.
> diff --git a/man3/sysconf.3 b/man3/sysconf.3
> --- a/man3/sysconf.3
> +++ b/man3/sysconf.3
> @@ -254,7 +254,7 @@ parentheses by
> .BR expr (1).
> .TP
> .BR LINE_MAX " - " _SC_LINE_MAX
> -The maximum length of a utility's input line length, either from
> +The maximum length of a utility's input line, either from

Applied.

> standard input or from a file.
> This includes length for a trailing
> newline.
> diff --git a/man3/tzset.3 b/man3/tzset.3
> --- a/man3/tzset.3
> +++ b/man3/tzset.3
> @@ -156,7 +156,7 @@ runs from the first Sunday in October to the third
> Sunday in March,
> and the changeovers happen at the default time of 02:00:00:
> .nf
>
> - TZ="NZST-12.00:00NZDT-13:00:00,M10.1.0,M3.3.0"
> + TZ="NZST-12:00:00NZDT-13:00:00,M10.1.0,M3.3.0"

Applied.

> .fi
> .PP
> The third format specifies that the timezone information should be read

Thanks!

Michael


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Author of "The Linux Programming Interface"; http://man7.org/tlpi/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2011-09-08 15:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-31 15:15 [patch] posix_fallocate.3, prctl.2, sigaction.2, sysconf.3, tzset.3: minor rewording Seonghun Lim
     [not found] ` <4E5E4FFD.7020806-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-09-08 15:26   ` Michael Kerrisk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox