Fix args list

This commit is contained in:
Jakub 2026-07-12 16:25:48 +08:00
parent 21230efb5e
commit db65e7c5e2

View file

@ -26,7 +26,7 @@ heading component:
:title \"Title Text\")) :title \"Title Text\"))
```" ```"
(when (and (not (null? args)) (when (and (not (null? args))
(= (remainder (length args) 2 1))) (= (remainder (length args) 2) 1))
(error (format (error (format
"mithril:comp-> Component macro expects even length args list. "mithril:comp-> Component macro expects even length args list.