From 8d3c0e6665a4a12d47309f92fa5e83f169addeac Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Tue, 31 Jan 2006 19:17:33 +0000 Subject: [PATCH] updated many unions to or/c's svn: r2061 original commit: fddb1fa862b6e0e8e71f011dcdda5309e64635e1 --- collects/net/imap.ss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/net/imap.ss b/collects/net/imap.ss index 61d94ed92d..b7560362c7 100644 --- a/collects/net/imap.ss +++ b/collects/net/imap.ss @@ -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?))))])