From db65e7c5e2fe4423c0bcc4f115bc19f4e38854c6 Mon Sep 17 00:00:00 2001 From: Jakub Date: Sun, 12 Jul 2026 16:25:48 +0800 Subject: [PATCH] Fix args list --- mithril.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mithril.scm b/mithril.scm index b6fbe71..1d101f0 100644 --- a/mithril.scm +++ b/mithril.scm @@ -26,7 +26,7 @@ heading component: :title \"Title Text\")) ```" (when (and (not (null? args)) - (= (remainder (length args) 2 1))) + (= (remainder (length args) 2) 1)) (error (format "mithril:comp-> Component macro expects even length args list.