updated many unions to or/c's

svn: r2061

original commit: fddb1fa862b6e0e8e71f011dcdda5309e64635e1
This commit is contained in:
Robby Findler 2006-01-31 19:17:33 +00:00
parent f5439c6bca
commit 590c4e759a

View File

@ -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?)))