From 203fef354f6a8107ed75cb1e04cf6e34ef19eaf0 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 14 Jun 2026 10:46:29 +0000 Subject: [PATCH] fix: invalid // comment headers break YAML/just parsing (use #) The estate-standardization "Owner:" header was written with C-style // in files that use # comments (.gitlab-ci.yml, Justfile), which is invalid and breaks those parsers. Changed `// Owner:` -> `# Owner:`. (.adoc/.rs files are left as-is: // is a valid comment there.) https://claude.ai/code/session_017TXizM5c1Yd9HWf7Y15YH2 --- .gitlab-ci.yml | 2 +- Justfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 286c865..2bb868a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ # SPDX-License-Identifier: MPL-2.0 -// Owner: Jonathan D.A. Jewell +# Owner: Jonathan D.A. Jewell # Primary CI/CD - GitLab is the source of truth stages: diff --git a/Justfile b/Justfile index fbaad1a..d59bd23 100644 --- a/Justfile +++ b/Justfile @@ -1,5 +1,5 @@ # SPDX-License-Identifier: MPL-2.0 -// Owner: Jonathan D.A. Jewell +# Owner: Jonathan D.A. Jewell # Justfile for tangle # Default recipe — list available commands