aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuuk de Gram <luuk@degram.dev>2022-09-26 19:54:35 +0200
committerLuuk de Gram <luuk@degram.dev>2022-09-26 19:54:35 +0200
commit9cd521a24f6062889ed574535aa8abc9bf057f81 (patch)
tree3a95cc6819be60ac10a82a0546bbfb38040c9d82 /src
parent37cfe3dfd21f17bb4e6b477674dfd918216239de (diff)
downloadzig-9cd521a24f6062889ed574535aa8abc9bf057f81.tar.gz
zig-9cd521a24f6062889ed574535aa8abc9bf057f81.zip
zig fmt
Diffstat (limited to 'src')
-rw-r--r--src/Autodoc.zig2
1 files changed, 1 insertions, 1 deletions
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();