]> git.eshelyaron.com Git - emacs.git/commitdiff
entered into RCS
authorRichard M. Stallman <rms@gnu.org>
Thu, 23 Jun 1994 14:02:40 +0000 (14:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 23 Jun 1994 14:02:40 +0000 (14:02 +0000)
lispref/numbers.texi

index e3456efbb20a19cd817348f7352b924f613e9892..b083d73c4aab58445f7933d4e3f5dd5007f5e8db 100644 (file)
@@ -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