fixed an integer? to say exact-integer?

This commit is contained in:
Robby Findler 2010-12-13 07:25:04 -06:00
parent 39c6fe02d7
commit 9066868c7c
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ structures.
@racketblock[
`((port ,integer?)
(max-waiting ,integer?)
(max-waiting ,exact-integer?)
(initial-connection-timeout ,integer?)
(default-host-table
,host-table-sexpr?)

View File

@ -42,7 +42,7 @@ The @racket[dispatch-server^] signature is an alias for
@defthing[port tcp-listen-port?]{Specifies the port to serve on.}
@defthing[listen-ip (or/c string? false/c)]{Passed to @racket[tcp-listen].}
@defthing[max-waiting integer?]{Passed to @racket[tcp-accept].}
@defthing[max-waiting exact-integer?]{Passed to @racket[tcp-listen].}
@defthing[initial-connection-timeout integer?]{Specifies the initial timeout given to a connection.}
@defproc[(read-request [c connection?]
[p tcp-listen-port?]