Skip to content

Commit

Permalink
fix apply: equal? is not variadic
Browse files Browse the repository at this point in the history
  • Loading branch information
benknoble committed Oct 4, 2023
1 parent 939d7b2 commit 69da9ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dia/compare-anonymous-appraisal.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
(match trees
[(list '() ...) result]
[(list (cons (? string? x) rest) ...)
#:when (apply equal? x)
#:when (apply string=? x)
(loop (cons (list (car x)) result)
rest)]
[(list (cons (? number? n) rest) ...)
Expand Down

0 comments on commit 69da9ee

Please sign in to comment.