Fix transposition in error message (#215)

This commit is contained in:
Jens Axel Søgaard 2019-10-14 16:10:44 +02:00 committed by Ben Greenman
parent 97078b60ed
commit e44a5bb9f1

View File

@ -33,7 +33,7 @@
(let loop ([xs xs] [as '()])
(define a (and (pair? xs) (attribute->symbol (car xs))))
(cond [(not a) (values (reverse as) xs)]
[(null? (cdr xs)) (error 'attriubtes+body
[(null? (cdr xs)) (error 'attributes+body
"missing attribute value for `~s:'" a)]
[else (loop (cddr xs) (cons (cons a (cadr xs)) as))])))