diff options
| -rw-r--r-- | lispref/numbers.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/numbers.texi b/lispref/numbers.texi index e3456efbb20..b083d73c4aa 100644 --- a/lispref/numbers.texi +++ b/lispref/numbers.texi | |||
| @@ -571,10 +571,10 @@ either argument is floating point. | |||
| 571 | @section Rounding Operations | 571 | @section Rounding Operations |
| 572 | @cindex rounding without conversion | 572 | @cindex rounding without conversion |
| 573 | 573 | ||
| 574 | The functions @code{ffloor}, @code{fceil}, @code{fround} and | 574 | The functions @code{ffloor}, @code{fceiling}, @code{fround} and |
| 575 | @code{ftruncate} take a floating point argument and return a floating | 575 | @code{ftruncate} take a floating point argument and return a floating |
| 576 | point result whose value is a nearby integer. @code{ffloor} returns the | 576 | point result whose value is a nearby integer. @code{ffloor} returns the |
| 577 | nearest integer below; @code{fceil}, the nearest integer above; | 577 | nearest integer below; @code{fceiling}, the nearest integer above; |
| 578 | @code{ftruncate}, the nearest integer in the direction towards zero; | 578 | @code{ftruncate}, the nearest integer in the direction towards zero; |
| 579 | @code{fround}, the nearest integer. | 579 | @code{fround}, the nearest integer. |
| 580 | 580 | ||
| @@ -583,7 +583,7 @@ This function rounds @var{float} to the next lower integral value, and | |||
| 583 | returns that value as a floating point number. | 583 | returns that value as a floating point number. |
| 584 | @end defun | 584 | @end defun |
| 585 | 585 | ||
| 586 | @defun fceil float | 586 | @defun fceiling float |
| 587 | This function rounds @var{float} to the next higher integral value, and | 587 | This function rounds @var{float} to the next higher integral value, and |
| 588 | returns that value as a floating point number. | 588 | returns that value as a floating point number. |
| 589 | @end defun | 589 | @end defun |