Fixed typos in the numbers reference.
This commit is contained in:
parent
f5a0e6e0b8
commit
a6c75db94f
|
@ -353,14 +353,14 @@ Returns the integer closest to @racket[x], resolving ties in favor of
|
||||||
|
|
||||||
@defproc[(floor [x real?]) integer?]{
|
@defproc[(floor [x real?]) integer?]{
|
||||||
|
|
||||||
Returns the largest integer is that is no more than @racket[x].
|
Returns the largest integer that is no more than @racket[x].
|
||||||
|
|
||||||
@mz-examples[(floor 17/4) (floor -17/4) (floor 2.5) (floor -2.5)]}
|
@mz-examples[(floor 17/4) (floor -17/4) (floor 2.5) (floor -2.5)]}
|
||||||
|
|
||||||
|
|
||||||
@defproc[(ceiling [x real?]) integer?]{
|
@defproc[(ceiling [x real?]) integer?]{
|
||||||
|
|
||||||
Returns the smallest integer is that is at least as large as
|
Returns the smallest integer that is at least as large as
|
||||||
@racket[x].
|
@racket[x].
|
||||||
|
|
||||||
@mz-examples[(ceiling 17/4) (ceiling -17/4) (ceiling 2.5) (ceiling -2.5)]}
|
@mz-examples[(ceiling 17/4) (ceiling -17/4) (ceiling 2.5) (ceiling -2.5)]}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user