Skip to content

Commit

Permalink
only use /* */ comments in output
Browse files Browse the repository at this point in the history
  • Loading branch information
david-vanderson committed Sep 29, 2023
1 parent e1cb465 commit 251d33d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/textdiff/outputHeaders.zig
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pub fn main() !void {
break;
} else {
const vline = versionstack.pop();
try outwriter.print("#endif //{s}\n", .{vline});
try outwriter.print("#endif /*{s}*/\n", .{vline});
}
}

Expand Down Expand Up @@ -173,7 +173,7 @@ pub fn main() !void {

while (versionstack.items.len > 0) {
const versionline = versionstack.pop();
try outwriter.print("#endif //{s}\n", .{versionline});
try outwriter.print("#endif /*{s}*/\n", .{versionline});
}
}
}
Expand Down

0 comments on commit 251d33d

Please sign in to comment.