From a98ed9b3258e9d5d455ad797692da567ebbd803d Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Sat, 1 Aug 2020 23:10:32 +0200 Subject: [PATCH] utils: Typo in the error message in hash-intersect. --- utils.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.rkt b/utils.rkt index b5d5a69..3fa859c 100644 --- a/utils.rkt +++ b/utils.rkt @@ -605,7 +605,7 @@ #:combine/key [combine/key (if combine (λ (_ x y) (combine x y)) - (error 'hash-intersection))] + (error 'hash-intersect))] one . rest) (define common-keys (apply set-intersect (map hash-keys (cons one rest)))) (define res (for/hash ([k (in-list common-keys)])