From 1fe258e3f7cc95cdc67ad05be813792d560dfb7e Mon Sep 17 00:00:00 2001 From: giles Date: Sat, 7 Mar 2026 17:18:00 +0000 Subject: [PATCH] Fix plans.sx parse error: restore correct paren count for isomorphic section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SX parser counts \n inside string literals as line breaks, so the parser's line numbers differ from file line numbers. The naive paren counter was wrong — the original 8 closing parens was correct. Co-Authored-By: Claude Opus 4.6 --- sx/sx/plans.sx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sx/sx/plans.sx b/sx/sx/plans.sx index 5d18067..1118b59 100644 --- a/sx/sx/plans.sx +++ b/sx/sx/plans.sx @@ -2041,7 +2041,7 @@ (tr :class "border-b border-stone-100" (td :class "px-3 py-2 font-mono text-sm text-violet-700" "shared/sx/ref/suspense.sx") (td :class "px-3 py-2 text-stone-700" "Streaming/suspension (new)") - (td :class "px-3 py-2 text-stone-600" "5"))))))))))))) + (td :class "px-3 py-2 text-stone-600" "5")))))))) ;; --------------------------------------------------------------------------- ;; SX CI Pipeline