diff options
author | mpp <mpp@FreeBSD.org> | 1996-08-21 21:30:02 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 1996-08-21 21:30:02 +0000 |
commit | 4eedb7433af834c9187bfa17388837c82bd98be1 (patch) | |
tree | e0969c7733e82a2a114f19ea11c2ca43edaee57c /lib/libm | |
parent | d63efd5bb2fbe052c5cc672cc45dc214c5331484 (diff) | |
download | FreeBSD-src-4eedb7433af834c9187bfa17388837c82bd98be1.zip FreeBSD-src-4eedb7433af834c9187bfa17388837c82bd98be1.tar.gz |
Improve some poor wording.
Diffstat (limited to 'lib/libm')
-rw-r--r-- | lib/libm/common_source/ceil.3 | 4 | ||||
-rw-r--r-- | lib/libm/common_source/floor.3 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libm/common_source/ceil.3 b/lib/libm/common_source/ceil.3 index e6ce835..1c0e6b0 100644 --- a/lib/libm/common_source/ceil.3 +++ b/lib/libm/common_source/ceil.3 @@ -36,7 +36,7 @@ .Os .Sh NAME .Nm ceil -.Nd smallest integral value not greater than x +.Nd smallest integral value greather than or equal to x .Sh SYNOPSIS .Fd #include <math.h> .Ft double @@ -44,7 +44,7 @@ .Sh DESCRIPTION The .Fn ceil -function computes the smallest integral value not less than +function computes the smallest integral value greater than or equal to .Fa x . .Sh RETURN VALUES The diff --git a/lib/libm/common_source/floor.3 b/lib/libm/common_source/floor.3 index 2df55f9..5dbe1c8 100644 --- a/lib/libm/common_source/floor.3 +++ b/lib/libm/common_source/floor.3 @@ -36,7 +36,7 @@ .Os .Sh NAME .Nm floor -.Nd largest integral value not greater than x +.Nd largest integral value less than or equal to x .Sh SYNOPSIS .Fd #include <math.h> .Ft double @@ -44,7 +44,7 @@ .Sh DESCRIPTION The .Fn floor -function computes the largest integral value not greater than +function computes the largest integral value less than or equal to .Fa x . .Sh RETURN VALUES The |