Improve some poor wording.

This commit is contained in:
Mike Pritchard 1996-08-21 21:30:02 +00:00
parent c119f6297f
commit 1702c53ed2
2 changed files with 4 additions and 4 deletions

View file

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

View file

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