From 9cd521a24f6062889ed574535aa8abc9bf057f81 Mon Sep 17 00:00:00 2001 From: Luuk de Gram Date: Mon, 26 Sep 2022 19:54:35 +0200 Subject: [PATCH] zig fmt --- src/Autodoc.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Autodoc.zig b/src/Autodoc.zig index 4d2220edf8..9fe56a8ec2 100644 --- a/src/Autodoc.zig +++ b/src/Autodoc.zig @@ -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();