Fix missing return type
authorSiraaj Khandkar <siraaj@khandkar.net>
Tue, 23 Mar 2021 13:25:01 +0000 (09:25 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Tue, 23 Mar 2021 13:25:15 +0000 (09:25 -0400)
tt.rkt

diff --git a/tt.rkt b/tt.rkt
index 3581616..1cb90cf 100644 (file)
--- a/tt.rkt
+++ b/tt.rkt
@@ -39,7 +39,7 @@
 (: tt-home-dir Path-String)
 (define tt-home-dir (build-path (expand-user-path "~") ".tt"))
 
-(: concurrent-filter-map (∀ (α β) (-> Natural (-> α β) (Listof α))))
+(: concurrent-filter-map (∀ (α β) (-> Natural (-> α β) (Listof α) (Listof β))))
 (define (concurrent-filter-map num-workers f xs)
   ; TODO preserve order of elements OR communicate that reorder is expected
   ; TODO switch from mailboxes to channels
This page took 0.024265 seconds and 4 git commands to generate.