Skip to content

Commit

Permalink
Fix zigfmt violation from #12976
Browse files Browse the repository at this point in the history
  • Loading branch information
topolarity committed Sep 26, 2022
1 parent 1511488 commit 3fa635b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Autodoc.zig
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ pub fn generateZirData(self: *Autodoc) !void {
var files_iterator = self.files.iterator();

while (files_iterator.next()) |entry| {
const new_html_path = try std.mem.concat(self.arena, u8, &.{entry.key_ptr.*.sub_file_path, ".html"});
const new_html_path = try std.mem.concat(self.arena, u8, &.{ entry.key_ptr.*.sub_file_path, ".html" });

const html_file = try createFromPath(html_dir, new_html_path);
defer html_file.close();
Expand Down

0 comments on commit 3fa635b

Please sign in to comment.