Use `in-hash' explicitly.

(cherry picked from commit d459ad47b8)
This commit is contained in:
Sam Tobin-Hochstadt 2011-04-19 18:33:28 -04:00 committed by Eli Barzilay
parent de002b69e3
commit cf55168496

View File

@ -142,7 +142,7 @@
;; subst-all : substitution Type -> Type
(d/c (subst-all s t)
(substitution/c Type? . -> . Type?)
(for/fold ([t t]) ([(v r) s])
(for/fold ([t t]) ([(v r) (in-hash s)])
(match r
[(t-subst img)
(substitute img v t)]