summaryrefslogtreecommitdiff
path: root/lispref/numbers.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-06-23 14:02:40 +0000
committerRichard M. Stallman <rms@gnu.org>1994-06-23 14:02:40 +0000
commitbb61c6c61d8bbea0d236d9d28ff60e69eaed2845 (patch)
tree8343402ad11af3f6f79e2d151abb7e917f772f8d /lispref/numbers.texi
parent8dd7abfc2a729d3da8540c87b158d65872178b0d (diff)
entered into RCS
Diffstat (limited to 'lispref/numbers.texi')
-rw-r--r--lispref/numbers.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/numbers.texi b/lispref/numbers.texi
index e3456efbb2..b083d73c4a 100644
--- a/lispref/numbers.texi
+++ b/lispref/numbers.texi
@@ -571,10 +571,10 @@ either argument is floating point.
@section Rounding Operations
@cindex rounding without conversion
-The functions @code{ffloor}, @code{fceil}, @code{fround} and
+The functions @code{ffloor}, @code{fceiling}, @code{fround} and
@code{ftruncate} take a floating point argument and return a floating
point result whose value is a nearby integer. @code{ffloor} returns the
-nearest integer below; @code{fceil}, the nearest integer above;
+nearest integer below; @code{fceiling}, the nearest integer above;
@code{ftruncate}, the nearest integer in the direction towards zero;
@code{fround}, the nearest integer.
@@ -583,7 +583,7 @@ This function rounds @var{float} to the next lower integral value, and
returns that value as a floating point number.
@end defun
-@defun fceil float
+@defun fceiling float
This function rounds @var{float} to the next higher integral value, and
returns that value as a floating point number.
@end defun