Fix lower-case → lower in specs-explorer.sx

The SX primitive is called 'lower', not 'lower-case'.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 00:39:11 +00:00
parent 6a68894f7d
commit 95e42f9a87

View File

@@ -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")))