mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
Fixed missing quoting of >= (in ceil.3) and <= (in floor.3) by reverting to
describing these operators in English. This completes the fix in rev.1.3 (rev.1.2 got this wrong by describing wrong operators in English). Fixed bitrot and improved English in the DESCRIPTION section.
This commit is contained in:
parent
ab323a7d45
commit
aa842e6a12
2 changed files with 7 additions and 7 deletions
|
|
@ -38,7 +38,7 @@
|
|||
.Sh NAME
|
||||
.Nm ceil ,
|
||||
.Nm ceilf
|
||||
.Nd round to smallest integral value >= x
|
||||
.Nd smallest integral value greater than or equal to x
|
||||
.Sh LIBRARY
|
||||
.Lb libm
|
||||
.Sh SYNOPSIS
|
||||
|
|
@ -53,9 +53,9 @@ The
|
|||
and the
|
||||
.Fn ceilf
|
||||
functions return the smallest integral value
|
||||
(represented as a double precision number)
|
||||
greater than or equal to
|
||||
.Fa x .
|
||||
.Fa x ,
|
||||
expressed as a floating-point number.
|
||||
.Sh SEE ALSO
|
||||
.Xr abs 3 ,
|
||||
.Xr fabs 3 ,
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
.Sh NAME
|
||||
.Nm floor ,
|
||||
.Nm floorf
|
||||
.Nd round to largest integral value <= x
|
||||
.Nd largest integral value less than or equal to x
|
||||
.Sh LIBRARY
|
||||
.Lb libm
|
||||
.Sh SYNOPSIS
|
||||
|
|
@ -52,10 +52,10 @@ The
|
|||
.Fn floor
|
||||
and the
|
||||
.Fn floorf
|
||||
function returns the largest integral value
|
||||
(represented as a double precision number)
|
||||
function return the largest integral value
|
||||
less than or equal to
|
||||
.Fa x .
|
||||
.Fa x ,
|
||||
expressed as a floating-point number.
|
||||
.Sh SEE ALSO
|
||||
.Xr abs 3 ,
|
||||
.Xr ceil 3 ,
|
||||
|
|
|
|||
Loading…
Reference in a new issue