commit 590c4e759a56cf466ffff65c9964f0f8866a0a27 parent f5439c6bca1113c62c008e42428d9ab0fbf57555 Author: Robby Findler <robby@racket-lang.org> Date: Tue, 31 Jan 2006 19:17:33 +0000 updated many unions to or/c's svn: r2061 original commit: fddb1fa862b6e0e8e71f011dcdda5309e64635e1 Diffstat:
| M | 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 @@ -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?)))