From 590c4e759a56cf466ffff65c9964f0f8866a0a27 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/help/private/search.ss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/help/private/search.ss b/collects/help/private/search.ss index 61b5f841..e17cdf78 100644 --- a/collects/help/private/search.ss +++ b/collects/help/private/search.ss @@ -20,16 +20,16 @@ (-> any) (string? any/c . -> . void?) (string? any/c . -> . void?) - (string? string? string? path? (union string? number? false/c) any/c . -> . void?) + (string? string? string? path? (or/c string? number? false/c) any/c . -> . void?) . -> . - (union string? false/c))] + (or/c string? false/c))] (build-string-finds/finds (string? boolean? boolean? . -> . (values (listof string?) - (listof (union regexp? string?))))) + (listof (or/c regexp? string?))))) (non-regexp (string? . -> . string?)))