diff options
author | Mark H Weaver <mhw@netris.org> | 2011-02-13 16:28:34 -0500 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2011-02-15 09:20:17 +0100 |
commit | a6b087be1b46aaa8410e1460db5a2c0801650ce9 (patch) | |
tree | efd4482a408489f134ccf6c7fa5d65c0ea4f1210 /doc/ref/api-data.texi | |
parent | 79b3863d8c36275766c288992507252917255c62 (diff) | |
download | guile-a6b087be1b46aaa8410e1460db5a2c0801650ce9.tar.gz |
Fix minor errors in docs of division operators
* doc/ref/api-data.texi (Arithmetic): The R5RS `quotient', `remainder',
and `modulo' operators are exact-integer-only operators. `modulo' is
equivalent to `floor-remainder', not `floor-quotient'.
Diffstat (limited to 'doc/ref/api-data.texi')
-rw-r--r-- | doc/ref/api-data.texi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/ref/api-data.texi b/doc/ref/api-data.texi index a8cce240b..5bef926a9 100644 --- a/doc/ref/api-data.texi +++ b/doc/ref/api-data.texi @@ -1308,7 +1308,7 @@ both @var{q} and @var{r}, and is more efficient than computing each separately. Note that @var{r}, if non-zero, will have the same sign as @var{y}. -When @var{x} and @var{y} are integers, @code{floor-quotient} is +When @var{x} and @var{y} are exact integers, @code{floor-remainder} is equivalent to the R5RS integer-only operator @code{modulo}. @lisp @@ -1365,8 +1365,9 @@ both @var{q} and @var{r}, and is more efficient than computing each separately. Note that @var{r}, if non-zero, will have the same sign as @var{x}. -When @var{x} and @var{y} are integers, these operators are equivalent to -the R5RS integer-only operators @code{quotient} and @code{remainder}. +When @var{x} and @var{y} are exact integers, these operators are +equivalent to the R5RS integer-only operators @code{quotient} and +@code{remainder}. @lisp (truncate-quotient 123 10) @result{} 12 |