s/nonnegative/non-negative/

This commit is contained in:
Michael Kerrisk 2007-04-24 19:11:01 +00:00
parent 18be658d0c
commit f94498eeb8
7 changed files with 7 additions and 7 deletions

View File

@ -36,7 +36,7 @@ is NULL, the severity class with the numeric value
is removed. is removed.
It is not possible to overwrite or remove one of the default It is not possible to overwrite or remove one of the default
severity classes. severity classes.
The severity value must be nonnegative. The severity value must be non-negative.
.SH "RETURN VALUE" .SH "RETURN VALUE"
Upon success, the value Upon success, the value
.B MM_OK .B MM_OK

View File

@ -20,7 +20,7 @@ The
function calculates the complex acosh(). function calculates the complex acosh().
If y = cacosh(z), then z = ccosh(y). If y = cacosh(z), then z = ccosh(y).
The imaginary part of y is chosen in the interval [\-pi,pi]. The imaginary part of y is chosen in the interval [\-pi,pi].
The real part of y is chosen nonnegative. The real part of y is chosen non-negative.
.LP .LP
One has cacosh(z) = (0.5)*clog((1+z)/(1\-z)). One has cacosh(z) = (0.5)*clog((1+z)/(1\-z)).
.SH "CONFORMING TO" .SH "CONFORMING TO"

View File

@ -16,7 +16,7 @@ csqrt, csqrtf, csqrtl \- complex square root
Link with \-lm. Link with \-lm.
.SH DESCRIPTION .SH DESCRIPTION
Calculate the square root of a given complex number, Calculate the square root of a given complex number,
with nonnegative real part, and with non-negative real part, and
with a branch cut along the negative real axis. with a branch cut along the negative real axis.
(That means that csqrt(\-1+eps*I) will be close to I while (That means that csqrt(\-1+eps*I) will be close to I while
csqrt(\-1\-eps*I) will be close to \-I, if eps is a small positive csqrt(\-1\-eps*I) will be close to \-I, if eps is a small positive

View File

@ -30,7 +30,7 @@ For a non-locking counterpart, see
.BR unlocked_stdio (3). .BR unlocked_stdio (3).
.SH "RETURN VALUE" .SH "RETURN VALUE"
The \fBfputws\fP() function returns a The \fBfputws\fP() function returns a
nonnegative integer if the operation was non-negative integer if the operation was
successful, or \-1 to indicate an error. successful, or \-1 to indicate an error.
.SH "CONFORMING TO" .SH "CONFORMING TO"
C99, POSIX.1-2001. C99, POSIX.1-2001.

View File

@ -122,7 +122,7 @@ First, the POSIX.1 compatible values.
.\" (if _POSIX_ASYNCHRONOUS_IO) .\" (if _POSIX_ASYNCHRONOUS_IO)
.\" The maximum amount by which a process can decrease its .\" The maximum amount by which a process can decrease its
.\" asynchronous I/O priority level from its own scheduling priority. .\" asynchronous I/O priority level from its own scheduling priority.
.\" Must be nonnegative. .\" Must be non-negative.
.TP .TP
.BR ARG_MAX " - " _SC_ARG_MAX .BR ARG_MAX " - " _SC_ARG_MAX
The maximum length of the arguments to the The maximum length of the arguments to the

View File

@ -22,7 +22,7 @@ The Gamma function is defined by
Gamma(x) = integral from 0 to infinity of t^(x\-1) e^\-t dt Gamma(x) = integral from 0 to infinity of t^(x\-1) e^\-t dt
.sp .sp
It is defined for every real number except for non-positive integers. It is defined for every real number except for non-positive integers.
For nonnegative integral \fIm\fP one has For non-negative integral \fIm\fP one has
.sp .sp
Gamma(m+1) = m! Gamma(m+1) = m!
.sp .sp

View File

@ -69,7 +69,7 @@ Return the maximum number of files that the calling process can open.
.SH "RETURN VALUE" .SH "RETURN VALUE"
On success, On success,
.BR ulimit () .BR ulimit ()
returns a nonnegative value. returns a non-negative value.
On error, \-1 is returned, and On error, \-1 is returned, and
.I errno .I errno
is set appropriately. is set appropriately.