From 95e42f9a87b00d57b30680ca8f8605558e1d67f6 Mon Sep 17 00:00:00 2001 From: giles Date: Thu, 12 Mar 2026 00:39:11 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20lower-case=20=E2=86=92=20lower=20in=20spe?= =?UTF-8?q?cs-explorer.sx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SX primitive is called 'lower', not 'lower-case'. Co-Authored-By: Claude Opus 4.6 --- sx/sx/specs-explorer.sx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sx/sx/specs-explorer.sx b/sx/sx/specs-explorer.sx index 60c91c0..a1214a5 100644 --- a/sx/sx/specs-explorer.sx +++ b/sx/sx/specs-explorer.sx @@ -75,7 +75,7 @@ (defcomp ~spec-explorer-section (&key section) (div :class "mb-8" (h2 :class "text-lg font-semibold text-stone-700 border-b border-stone-200 pb-1 mb-3" - :id (replace (lower-case (get section "title")) " " "-") + :id (replace (lower (get section "title")) " " "-") (get section "title")) (when (get section "comment") (p :class "text-sm text-stone-500 mb-3" (get section "comment")))