contract bug

svn: r8645
This commit is contained in:
Jay McCarthy 2008-02-13 15:50:01 +00:00
parent 603246a15a
commit d43ff0713e

View File

@ -11,17 +11,17 @@
; XXX unit? should be particular unit sig
(provide/contract
[configuration-table->web-config@
(-> path-string?
#:port (or/c false/c number?)
#:listen-ip (or/c false/c string?)
#:make-servlet-namespace make-servlet-namespace?
(->* (path-string?)
(#:port (or/c false/c number?)
#:listen-ip (or/c false/c string?)
#:make-servlet-namespace make-servlet-namespace?)
unit?)]
[configuration-table-sexpr->web-config@
(-> list? ; XXX
#:web-server-root path-string?
(->* (list?) ; XXX
(#:web-server-root path-string?
#:port (or/c false/c number?)
#:listen-ip (or/c false/c string?)
#:make-servlet-namespace make-servlet-namespace?
#:make-servlet-namespace make-servlet-namespace?)
unit?)])
; configuration-table->web-config@ : path -> configuration