updated many unions to or/c's

svn: r2061

original commit: fddb1fa862
This commit is contained in:
Robby Findler 2006-01-31 19:17:33 +00:00
parent 772b263eb3
commit 8d3c0e6665

View File

@ -13,8 +13,8 @@
[imap-get-hierarchy-delimiter (imap-connection? . -> . bytes?)]
[imap-list-child-mailboxes
(case->
(imap-connection? (union false/c bytes?) . -> . (listof (list/c (listof symbol?) bytes?)))
(imap-connection? (union false/c bytes?) (union false/c bytes?)
(imap-connection? (or/c false/c bytes?) . -> . (listof (list/c (listof symbol?) bytes?)))
(imap-connection? (or/c false/c bytes?) (or/c false/c bytes?)
. -> .
(listof (list/c (listof symbol?) bytes?))))])