fix minor doc bugs
This commit is contained in:
parent
c3f5aed473
commit
0b8a664d78
|
@ -253,8 +253,8 @@ otherwise.}
|
|||
@mz-examples[(remainder 10 3) (remainder -10.0 3) (remainder 10.0 -3) (remainder -10 -3) (remainder +inf.0 3)]}
|
||||
|
||||
|
||||
@defproc[(quotient/remainder [n integer?] [m integer?]) (values number? number?)]{ Returns
|
||||
@racket[(values (quotient n m) (remainder n m))], but the combination is computed
|
||||
@defproc[(quotient/remainder [n integer?] [m integer?]) (values integer? integer?)]{ Returns
|
||||
@racket[(values (quotient n m) (remainder n m))], but the combination may be computed
|
||||
more efficiently than separate calls to @racket[quotient] and @racket[remainder].
|
||||
|
||||
@mz-examples[
|
||||
|
@ -262,7 +262,7 @@ otherwise.}
|
|||
]}
|
||||
|
||||
|
||||
@defproc[(modulo [n integer?] [m integer?]) number?]{ Returns
|
||||
@defproc[(modulo [n integer?] [m integer?]) integer?]{ Returns
|
||||
@racket[_q] with the same sign as @racket[m] where
|
||||
|
||||
@itemize[
|
||||
|
|
|
@ -20,7 +20,7 @@ In addition to the parameters defined in this section,
|
|||
@scheme[pretty-print] conforms to the @scheme[print-graph],
|
||||
@scheme[print-struct], @scheme[print-hash-table],
|
||||
@scheme[print-vector-length], @scheme[print-box], and
|
||||
@scheme[print-as-quasiquote] parameters.
|
||||
@scheme[print-as-expression] parameters.
|
||||
|
||||
The pretty printer detects structures that have the
|
||||
@scheme[prop:custom-write] property and it calls the corresponding
|
||||
|
|
Loading…
Reference in New Issue
Block a user