Skip to content

Commit 7cd0f79

Browse files
claudehyperpolymath
authored andcommitted
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
1 parent e5dff6d commit 7cd0f79

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: MPL-2.0
2-
// Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
2+
# Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
33
# Primary CI/CD - GitLab is the source of truth
44

55
stages:

Justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: MPL-2.0
2-
// Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
2+
# Owner: Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
33
# Justfile for tangle
44

55
# Default recipe — list available commands

0 commit comments

Comments
 (0)