Skip to content

Commit

Permalink
Fix bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahStoryM committed Oct 5, 2021
1 parent f7ef99b commit 6f269ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions typed-racket-lib/typed-racket/base-env/prims.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -614,9 +614,9 @@ the typed racket language.
(quasisyntax/loc stx
(#,for/folder: : #,a.ty
((return-hash : #,a.ty (ann (#,hash-maker null) #,a.ty)))
(if for*?
(clause.expand* ... ...)
(clause.expand ... ...))
#,(if for*?
#'(clause.expand* ... ...)
#'(clause.expand ... ...))
(let-values (((key val) (let () body ...)))
(hash-set return-hash key val))))])))

Expand Down

0 comments on commit 6f269ce

Please sign in to comment.