Skip to content

Commit 6709cc7

Browse files
committed
formatted files
1 parent 5c955b9 commit 6709cc7

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/html/document.zig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,6 @@ pub const ParseOptions = struct {
531531
return self.writeHtml(writer);
532532
}
533533

534-
535534
fn ensureQueryOneArena(noalias self: *DocSelf) *std.heap.ArenaAllocator {
536535
if (self.query_one_arena == null) {
537536
self.query_one_arena = std.heap.ArenaAllocator.init(self.allocator);

src/root.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ test "writeHtml parses and prints complex document" {
186186
;
187187
const src = try alloc.dupe(u8, src_const);
188188
defer alloc.free(src);
189-
try doc.parse(src, .{.drop_whitespace_text_nodes = false});
189+
try doc.parse(src, .{ .drop_whitespace_text_nodes = false });
190190

191191
const html = doc.html() orelse return error.TestUnexpectedResult;
192192

0 commit comments

Comments
 (0)