Skip to content
This repository was archived by the owner on Nov 22, 2025. It is now read-only.

Commit 251d33d

Browse files
only use /* */ comments in output
1 parent e1cb465 commit 251d33d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/textdiff/outputHeaders.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ pub fn main() !void {
134134
break;
135135
} else {
136136
const vline = versionstack.pop();
137-
try outwriter.print("#endif //{s}\n", .{vline});
137+
try outwriter.print("#endif /*{s}*/\n", .{vline});
138138
}
139139
}
140140

@@ -173,7 +173,7 @@ pub fn main() !void {
173173

174174
while (versionstack.items.len > 0) {
175175
const versionline = versionstack.pop();
176-
try outwriter.print("#endif //{s}\n", .{versionline});
176+
try outwriter.print("#endif /*{s}*/\n", .{versionline});
177177
}
178178
}
179179
}

0 commit comments

Comments
 (0)